:root {
  --bg: #f6f8ff;
  --bg-soft: #eef3ff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --panel-border: rgba(120, 136, 206, 0.16);
  --text: #16203d;
  --muted: #5f698f;
  --primary: #315efb;
  --secondary: #8459ff;
  --accent: #11bdf4;
  --success: #23d18b;
  --warning: #f8b84e;
  --shadow: 0 28px 80px rgba(46, 70, 140, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(110, 124, 255, 0.12), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(17, 189, 244, 0.12), transparent 22%),
    radial-gradient(circle at 50% 85%, rgba(132, 89, 255, 0.1), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 54, 118, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 54, 118, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 85%);
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  background: rgba(246, 248, 255, 0.96);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid rgba(26, 43, 94, 0.12);
  border-top-color: var(--accent);
  border-right-color: var(--secondary);
  animation: spin 1s linear infinite;
  position: relative;
}

.loader__ring::after {
  content: "IP";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: var(--text);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section--compact {
  padding: 72px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 136, 206, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-heading {
  max-width: 720px;
  margin: 1rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(120, 136, 206, 0.12);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 0;
  flex-shrink: 0;
}

.brand__logo {
  width: clamp(179px, 24vw, 192px);
  height: auto;
  display: block;
  object-fit: contain;
}

.brand--footer .brand__logo {
  width: clamp(245px, 25vw, 340px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  color: var(--muted);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(49, 94, 251, 0.08);
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(120, 136, 206, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn--primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 40px rgba(110, 124, 255, 0.35);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(120, 136, 206, 0.18);
}

.btn--ghost {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(120, 136, 206, 0.18);
}

.hero {
  padding: 54px 0 48px;
}

.hero__grid,
.split-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero__content {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #2e4ebd;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(120, 136, 206, 0.18);
}

.eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(35, 209, 139, 0.15);
}

.hero h1 {
  margin: 1.1rem 0 1rem;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero__stats {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-pill {
  min-width: 140px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(120, 136, 206, 0.16);
  background: rgba(255, 255, 255, 0.85);
}

.stat-pill strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

.stat-pill span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel,
.glass-card,
.service-card,
.testimonial,
.team-card,
.contact-card,
.branch-card,
.feature-card,
.story-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.96));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-panel {
  padding: 1.4rem;
}

.hero-panel::before,
.glass-card::before,
.service-card::before,
.testimonial::before,
.team-card::before,
.contact-card::before,
.branch-card::before,
.feature-card::before,
.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.65), transparent 32%, transparent 65%, rgba(17, 189, 244, 0.08));
  pointer-events: none;
}

.dashboard {
  padding: 1.25rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(17, 189, 244, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(120, 136, 206, 0.12);
}

.dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard__visual {
  margin-top: 1.25rem;
  padding: 0.9rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(241, 245, 255, 0.92), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(120, 136, 206, 0.14);
}

.dashboard__visual img {
  width: 100%;
  border-radius: 18px;
}

.chip-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(238, 243, 255, 0.92);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.chip strong {
  color: var(--text);
}

.dashboard__amount {
  margin: 1.4rem 0 1rem;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

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

.mini-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(120, 136, 206, 0.14);
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.mini-card strong {
  font-size: 1.05rem;
}

.trust-bar {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.trust-badge {
  padding: 1rem 1rem 1rem 3.25rem;
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(120, 136, 206, 0.16);
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.trust-badge strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
  overflow-wrap: anywhere;
}

.trust-badge::before {
  content: attr(data-icon);
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1.15rem;
}

.marquee-wrap {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(120, 136, 206, 0.14);
  border-bottom: 1px solid rgba(120, 136, 206, 0.14);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: slide 30s linear infinite;
}

.logo-pill {
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(120, 136, 206, 0.14);
  font-weight: 700;
  color: #2b3f73;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.grid-3,
.grid-4,
.grid-auto,
.card-grid {
  display: grid;
  gap: 1.35rem;
}

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

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

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card,
.feature-card,
.testimonial,
.team-card,
.contact-card,
.branch-card,
.story-card {
  padding: 1.4rem;
}

.service-card:hover,
.feature-card:hover,
.testimonial:hover,
.team-card:hover,
.contact-card:hover,
.branch-card:hover,
.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 124, 255, 0.28);
  box-shadow: 0 28px 80px rgba(54, 74, 138, 0.16);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(110, 124, 255, 0.2), rgba(24, 213, 255, 0.2));
  border: 1px solid rgba(120, 136, 206, 0.14);
  font-size: 1.35rem;
}

.service-card h3,
.feature-card h3,
.testimonial h3,
.team-card h3,
.contact-card h3,
.branch-card h3,
.story-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.service-card p,
.feature-card p,
.testimonial p,
.team-card p,
.contact-card p,
.branch-card p,
.story-card p,
.list {
  color: var(--muted);
  margin: 0;
}

.list {
  padding-left: 1rem;
  margin-top: 1rem;
}

.list li + li {
  margin-top: 0.4rem;
}

.highlight-card {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 0.9fr;
  padding: 1.5rem;
  margin-top: 2rem;
}

.highlight-card__visual {
  min-height: 260px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(17, 189, 244, 0.12), rgba(132, 89, 255, 0.12)),
    url("./services-inr-visual.svg") center/cover;
  border: 1px solid rgba(120, 136, 206, 0.14);
}

.feature-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1rem;
}

.quote {
  font-size: 1.08rem;
  color: #30446f;
}

.rating {
  color: #ffd15c;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.avatar,
.team-photo,
.founder-photo {
  border-radius: 20px;
  border: 1px solid rgba(120, 136, 206, 0.16);
  object-fit: cover;
}

.avatar {
  width: 54px;
  height: 54px;
}

.team-photo {
  width: 100%;
  height: 250px;
  margin-bottom: 1rem;
}

.founder-photo {
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.person strong,
.team-card strong {
  display: block;
}

.muted {
  color: var(--muted);
}

.contact-grid,
.founder-grid,
.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.founder-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.footer {
  padding: 24px 0 36px;
  border-top: 1px solid rgba(120, 136, 206, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
}

.footer h4 {
  margin-bottom: 0.85rem;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-links a,
.footer-links a {
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(120, 136, 206, 0.14);
}

.copyright {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(120, 136, 206, 0.14);
  color: var(--muted);
  font-size: 0.92rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-label {
  font-weight: 600;
}

.input,
.textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(120, 136, 206, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: #166641;
  background: rgba(35, 209, 139, 0.12);
  border: 1px solid rgba(35, 209, 139, 0.22);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-item {
  padding: 1rem 1rem 1rem 3.2rem;
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(120, 136, 206, 0.14);
}

.contact-item::before {
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.contact-item--location::before {
  content: "📍";
}

.contact-item--call::before {
  content: "📞";
}

.contact-item--hours::before {
  content: "⏱";
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 24px;
}

.branch-card iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 18px;
  margin-top: 1rem;
}

.hero-mini {
  padding: 48px 0 12px;
}

.hero-mini h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-mini p {
  max-width: 720px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(120, 136, 206, 0.14);
  color: #39528a;
  font-size: 0.9rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 0.75rem;
  z-index: 1100;
}

.fab {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.fab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.fab--call {
  background: linear-gradient(135deg, var(--success), #149f68);
}

.fab--chat {
  background: linear-gradient(135deg, #27d367, #14b84a);
}

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

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

.page-banner {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(120, 136, 206, 0.16);
  background: linear-gradient(135deg, rgba(110, 124, 255, 0.12), rgba(17, 189, 244, 0.08));
}

.page-banner strong {
  display: block;
  margin-bottom: 0.35rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.timeline-item {
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(120, 136, 206, 0.14);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 0 0 6px rgba(24, 213, 255, 0.12);
}

.inline-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: 1rem;
  color: var(--muted);
}

.inline-metric strong {
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero__grid,
  .split-grid,
  .highlight-card,
  .contact-grid,
  .founder-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  .dashboard__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .chip-row {
    width: 100%;
  }

  .nav {
    min-height: 82px;
  }

  .brand__logo {
    width: 220px;
  }

  .brand--footer .brand__logo {
    width: 230px;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(120, 136, 206, 0.16);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.95rem 1rem;
  }

  .nav-cta .btn--ghost {
    display: none;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .section--compact {
    padding: 68px 0;
  }

  .hero {
    padding-top: 30px;
  }

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

  .hero__actions,
  .inline-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .dashboard__grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .marquee-track {
    animation-duration: 22s;
  }

  .logo-pill {
    min-width: 126px;
    padding: 0.85rem 1rem;
  }

  .stat-pill {
    width: 100%;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .brand__logo,
  .brand--footer .brand__logo {
    width: 50px;
    height: 40px;
  }
}
