:root {
  --primary: #20aeea;
  --primary-rgb: 32, 174, 234;
  --primary-dark: #0c4f93;
  --primary-dark-rgb: 12, 79, 147;
  --secondary: #ff7a1a;
  --secondary-rgb: 255, 122, 26;
  --green: #69bd45;
  --green-rgb: 105, 189, 69;
  --text: #102033;
  --muted: #65758b;
  --soft: #f3f9ff;
  --border: rgba(18, 32, 51, 0.1);
  --glass: rgba(255, 255, 255, 0.82);
  --shadow-blue: 0 24px 60px rgba(12, 79, 147, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(var(--primary-rgb), .25), transparent 32rem),
    radial-gradient(circle at 92% 10%, rgba(var(--secondary-rgb), .18), transparent 28rem),
    radial-gradient(circle at 18% 82%, rgba(var(--green-rgb), .14), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 38%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32,174,234,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,174,234,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, black 42%, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10rem -16rem auto;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .10), transparent 68%);
}

.fw-black { font-weight: 900; }
.text-primary-dark { color: var(--primary-dark); }
.text-white-75 { color: rgba(255,255,255,.78); }
.bg-soft {
  background:
    radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), .10), transparent 24rem),
    radial-gradient(circle at 95% 80%, rgba(var(--green-rgb), .10), transparent 20rem),
    linear-gradient(180deg, #f3faff, #ffffff);
}
.section-padding { padding: 96px 0; }
.section-title { font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 850; line-height: 1.08; letter-spacing: -.045em; }

.navbar-glass {
  background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(246,252,255,.78));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(var(--primary-dark-rgb), .10);
  box-shadow: 0 10px 34px rgba(12,79,147,.06);
}
.navbar-brand span { color: var(--primary-dark); letter-spacing: -.02em; }
.brand-icon { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(12,79,147,.16)); }
.nav-link { color: var(--muted); font-weight: 650; }
.nav-link:hover, .nav-link.active { color: var(--primary-dark); }

.btn-gradient {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 0;
  box-shadow: 0 14px 30px rgba(var(--primary-rgb), .25);
  transition: .25s ease;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(var(--primary-rgb), .32); }
.btn-light { transition: .25s ease; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(12,79,147,.12); }

.hero-section {
  min-height: 100vh;
  padding: 120px 0 70px;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 18%, rgba(var(--secondary-rgb), .18), transparent 26rem),
    radial-gradient(circle at 72% 68%, rgba(var(--green-rgb), .14), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(235,248,255,.68));
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 8rem;
  right: -9rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.9), transparent 18%),
    radial-gradient(circle at 36% 36%, rgba(var(--primary-rgb), .22), transparent 0 36%, transparent 37%),
    radial-gradient(circle at 66% 62%, rgba(var(--secondary-rgb), .22), transparent 0 25%, transparent 26%),
    radial-gradient(circle at 44% 72%, rgba(var(--green-rgb), .20), transparent 0 28%, transparent 29%);
  filter: blur(.2px);
  z-index: -1;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.92));
  z-index: -1;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 42%, var(--green) 67%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-badge {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), .10), rgba(var(--secondary-rgb), .09));
  color: var(--primary-dark);
  border: 1px solid rgba(var(--primary-rgb), .20) !important;
  box-shadow: 0 10px 26px rgba(12,79,147,.08);
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 28px;
  box-shadow: var(--shadow-blue);
  backdrop-filter: blur(16px);
}
.hero-card { position: relative; overflow: hidden; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .12), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(var(--secondary-rgb), .16), transparent 26rem);
  pointer-events: none;
}
.hero-card > * { position: relative; }
.logo-panel {
  min-height: 260px;
  background:
    radial-gradient(circle at 16% 12%, rgba(var(--primary-rgb), .12), transparent 20rem),
    radial-gradient(circle at 88% 92%, rgba(var(--secondary-rgb), .10), transparent 16rem),
    #fff;
}
.main-logo { max-height: 210px; object-fit: contain; filter: drop-shadow(0 16px 30px rgba(12,79,147,.12)); }

.stat-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(var(--primary-rgb), .12);
  border-radius: 20px;
  padding: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.stat-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--green), var(--secondary)); }
.stat-card strong { display: block; color: var(--primary-dark); font-size: 1.45rem; line-height: 1; margin-bottom: 8px; }
.stat-card span { display: block; color: var(--muted); font-size: .82rem; font-weight: 650; }

.check-item { display: flex; gap: 10px; align-items: flex-start; color: var(--text); font-weight: 650; line-height: 1.45; }
.check-item i { color: var(--green); font-size: 1.25rem; flex: 0 0 auto; }

.service-card, .value-card {
  border: 1px solid rgba(var(--primary-rgb), .11);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.84)),
    radial-gradient(circle at top right, rgba(var(--primary-rgb), .16), transparent 18rem);
  box-shadow: 0 12px 34px rgba(15,42,77,.08);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before, .value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--green), var(--secondary));
  opacity: .82;
}
.service-card:hover, .value-card:hover { transform: translateY(-7px); box-shadow: 0 18px 45px rgba(15,42,77,.12); border-color: rgba(var(--primary-rgb), .28); }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), .18), rgba(var(--green-rgb), .14), rgba(var(--secondary-rgb), .14));
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(var(--primary-rgb), .14);
  color: var(--primary-dark);
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(15,42,77,.06);
  transition: .25s ease;
}
.industry-pill:hover { transform: translateY(-3px); background: linear-gradient(135deg, rgba(var(--primary-rgb), .10), rgba(var(--green-rgb), .08), rgba(var(--secondary-rgb), .08)); }

.value-card span { display: block; color: var(--secondary); font-size: 2rem; font-weight: 850; line-height: 1; margin-bottom: 16px; }

.cta-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(var(--secondary-rgb), .48), transparent 18rem),
    radial-gradient(circle at 12% 92%, rgba(var(--green-rgb), .36), transparent 16rem),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 24px 64px rgba(12,79,147,.26);
}
.cta-card::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}
.cta-card > * { position: relative; }

.contact-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-line:last-child { border-bottom: 0; }
.contact-line i { color: var(--primary); font-size: 1.25rem; }
.contact-line strong { display: block; color: var(--text); }
.contact-line span { color: var(--muted); }
.form-control { border-radius: 16px; border-color: rgba(var(--primary-rgb), .14); }
.form-control:focus { border-color: rgba(var(--primary-rgb), .72); box-shadow: 0 0 0 .25rem rgba(var(--primary-rgb), .12); }
/* =========================
   FULL WIDTH FOOTER
========================= */
.site-footer {
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer-full {
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 45%, #fff5ec 100%);
    border-top: 1px solid rgba(12, 79, 147, 0.08);
    position: relative;
    overflow: hidden;
}

.footer-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(32, 174, 234, 0.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 122, 26, 0.10), transparent 24%),
        radial-gradient(circle at 60% 30%, rgba(105, 189, 69, 0.08), transparent 18%);
    pointer-events: none;
}

.footer-full::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #20aeea 0%, #69bd45 50%, #ff7a1a 100%);
}

.footer-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 40px 22px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(12, 79, 147, 0.08);
}

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

.footer-logo-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 42, 77, 0.08);
    border: 1px solid rgba(12, 79, 147, 0.06);
    flex-shrink: 0;
}

.footer-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.footer-brand-text h5 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #123056;
}

.footer-brand-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #66768b;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #5d6d83;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #0c4f93;
}

.footer-middle {
    padding: 18px 0 16px;
    border-bottom: 1px solid rgba(12, 79, 147, 0.08);
}

.footer-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-tags span {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0c4f93;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(12, 79, 147, 0.08);
    box-shadow: 0 8px 18px rgba(15, 42, 77, 0.05);
    transition: all 0.25s ease;
}

.footer-tags span:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(32,174,234,0.12), rgba(255,122,26,0.10));
    color: #083d73;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #708095;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-content {
        padding: 24px 20px 18px;
    }

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

    .footer-brand {
        align-items: flex-start;
    }

    .footer-links {
        gap: 14px;
    }

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

    .footer-logo-wrap {
        width: 52px;
        height: 52px;
    }

    .footer-logo {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 768px) {
  .hero-section { min-height: auto; padding-top: 112px; }
  .section-padding { padding: 72px 0; }
  .hero-section::before { width: 24rem; height: 24rem; right: -12rem; opacity: .72; }
}
@media (max-width: 480px) {
  .section-padding { padding: 58px 0; }
  .display-3 { font-size: 2.0rem; }
  .brand-icon { width: 40px; height: 40px; }s
  .logo-panel { min-height: 210px; }
  .industry-pill { width: 100%; }
  .hero-section { padding-top: 104px; }
}
