/* =========================================================
   B.S.S. Global Trading Pvt. Ltd. — Design System v2
   Bold condensed display type + navy/green brand palette
   ========================================================= */

:root {
  --navy: #101c3f;
  --navy-2: #1b2d63;
  --sky: #0d99d6;
  --ink: #0f172a;
  --accent: #1f9a3a;
  --accent-dark: #157a2d;
  --accent-light: #e2f6e5;
  --muted: #64748b;
  --bg: #f6f8fb;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(16, 28, 63, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 28, 63, 0.16);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1240px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* Pushes the footer to the bottom of the viewport on short pages, instead of
   it floating right under sparse content with a visible gap beneath it. */
main { flex: 1 0 auto; }
footer.site-footer { flex-shrink: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5 {
  font-family: 'Anton', 'Urbanist', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--navy);
  line-height: 1.08;
  margin: 0 0 .5em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

section { padding: 84px 0; position: relative; }
.section-tight { padding: 40px 0; }

.section-head { max-width: 720px; margin: 0 auto 48px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; font-family: 'Urbanist', sans-serif; text-transform: none; }

.eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  background: var(--accent-light);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow.on-dark { background: rgba(255,255,255,.12); color: #d7ffe3; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(31,154,58,.3); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline.on-dark { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline.on-dark:hover { background: #fff; color: var(--navy); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 22px; font-size: .74rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #b7c3e8; font-size: .82rem; font-family: 'Urbanist', sans-serif; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #dbe4ff; }
.topbar .topbar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .topbar-links span, .topbar .topbar-links a { display: inline-flex; align-items: center; gap: 6px; }
.topbar .social a { margin-left: 12px; opacity: .8; }
.topbar .social a:hover { opacity: 1; color: var(--accent); }

/* ---------- Floating pill header ---------- */
header.site-header { position: sticky; top: 14px; z-index: 500; padding: 0 20px; }
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 22px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
  transition: var(--transition);
}
header.site-header.scrolled .nav-wrap { box-shadow: var(--shadow-lg); background: rgba(255,255,255,.98); }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 700;
  background: linear-gradient(90deg, var(--accent), var(--navy));
  transition: width .1s linear;
}

.brand { display: flex; align-items: center; gap: 12px; perspective: 700px; }
.brand img {
  height: 60px; width: 60px;
  border-radius: 50%;
  transform: rotateY(0deg) rotateX(0deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 3px 3px rgba(15,23,42,.25)) drop-shadow(0 10px 16px rgba(16,28,63,.35));
  transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease;
  will-change: transform;
}
.brand:hover img {
  transform: rotateY(14deg) rotateX(-6deg) scale(1.08);
  filter: drop-shadow(0 4px 4px rgba(15,23,42,.22)) drop-shadow(0 14px 22px rgba(16,28,63,.45));
}
.brand .brand-text { line-height: 1.15; font-family: 'Urbanist', sans-serif; }
.brand .brand-text strong { display: block; font-family: 'Anton', sans-serif; text-transform: uppercase; color: var(--navy); font-size: .95rem; letter-spacing: .01em; }
.brand .brand-text span { display: block; font-size: .68rem; color: var(--muted); }

nav.main-nav { display: flex; align-items: center; gap: 2px; }
nav.main-nav a.nav-link {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  font-size: .86rem;
  color: var(--navy);
  border-radius: 999px;
  transition: var(--transition);
}
nav.main-nav a.nav-link:hover, nav.main-nav a.nav-link.active { color: var(--accent-dark); background: var(--accent-light); }
nav.main-nav a.nav-link.active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 3px; height: 2px;
  border-radius: 2px; background: var(--accent);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--navy); cursor: pointer; padding: 6px; }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link i.fa-chevron-down { transition: transform .25s ease; font-size: .7em; margin-left: 2px; }
.nav-dropdown:hover > .nav-link i.fa-chevron-down { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; padding-top: 14px; /* bridges the hover gap — no dead zone */
  min-width: 220px; opacity: 0; pointer-events: none;
  transform: translateY(2px); transition: opacity .2s ease, transform .2s ease; transition-delay: 0s;
}
.nav-dropdown-menu-inner {
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 10px; position: relative;
}
.nav-dropdown-menu-inner::before {
  content: ''; position: absolute; top: -6px; left: 28px; width: 12px; height: 12px;
  background: #fff; border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  transform: rotate(45deg); border-radius: 2px 0 0 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px;
  font-weight: 600; font-size: .86rem; font-family: 'Urbanist', sans-serif; color: var(--navy); white-space: nowrap;
}
.nav-dropdown-menu a i { color: var(--accent); width: 16px; text-align: center; font-size: .82em; }
.nav-dropdown-menu a:hover { background: var(--accent-light); color: var(--accent-dark); }
@media (max-width: 1080px) {
  .nav-dropdown-menu {
    position: static; opacity: 1; pointer-events: auto; transform: none; padding: 0; display: none;
  }
  .nav-dropdown-menu-inner { box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 16px; }
  .nav-dropdown-menu-inner::before { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

@media (max-width: 1080px) {
  nav.main-nav {
    position: fixed; top: 0; right: -320px; height: 100vh; width: 300px;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 90px 20px 20px; box-shadow: -8px 0 30px rgba(0,0,0,.12);
    transition: right .3s ease; z-index: 600; overflow-y: auto; border-radius: 0;
  }
  nav.main-nav.open { right: 0; }
  nav.main-nav a.nav-link { padding: 14px 10px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-toggle { display: block; }
  .nav-cta .btn { padding: 11px 16px; font-size: .72rem; }
  header.site-header { top: 0; padding: 0; }
  .nav-wrap { border-radius: 0; }
}
@media (max-width: 360px) {
  .nav-cta .btn { padding: 9px 12px; }
  .brand .brand-text span { display: none; }
}

/* ---------- Hero ---------- */
.hero { background: var(--bg); padding-top: 60px; overflow: hidden; }
.hero-bg-shape {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle at 85% 10%, rgba(13,153,214,.12), transparent 40%),
                     radial-gradient(circle at 5% 90%, rgba(16,28,63,.06), transparent 45%);
}
.hero-inner { position: relative; z-index: 2; padding: 40px 0 90px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); }
.hero p.lead { font-family: 'Urbanist', sans-serif; font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 30px; text-transform: none; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; display: flex; justify-content: center; max-width: 440px; margin: 0 auto; width: 100%; }
.hero-blob {
  position: absolute; width: 420px; height: 420px; border-radius: 44% 56% 62% 38% / 46% 40% 60% 54%;
  background: linear-gradient(135deg, var(--accent), var(--navy));
  opacity: .12; z-index: 0; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hero-illustration {
  position: relative; z-index: 1; background: #fff; padding: 30px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); max-width: 400px; margin: 0 auto;
}
.hero-illustration svg { width: 100%; height: auto; display: block; }
.hero-logo-chip {
  position: absolute; top: -22px; right: -22px; z-index: 3; height: 84px; width: 84px;
  background: #fff; border-radius: 50%; box-shadow: var(--shadow-lg), 0 14px 24px rgba(16,28,63,.35);
  padding: 10px; object-fit: contain;
}
.hero-badge {
  position: absolute; bottom: 20px; left: -30px; background: var(--navy); color: #fff;
  padding: 15px 20px; border-radius: 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-family: 'Urbanist', sans-serif; font-size: .82rem;
  z-index: 2; max-width: 220px;
}
.hero-badge.hero-badge-2 { bottom: auto; top: 30px; left: auto; right: -20px; background: #fff; color: var(--navy); border: 1px solid var(--border); }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 20px 0 60px; }
  .hero-media { order: -1; margin-bottom: 40px; }
}
@media (max-width: 560px) {
  .hero-badge, .hero-badge.hero-badge-2 {
    position: static; margin: 14px auto 0; max-width: none; width: 100%;
    justify-content: center; left: auto; right: auto; top: auto; bottom: auto;
  }
  .hero-logo-chip { top: -14px; right: -14px; height: 52px; width: 52px; }
}

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: -50px; position: relative; z-index: 5; }
.stat-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 26px 20px; text-align: center; box-shadow: var(--shadow);
}
.stat-box .stat-value { font-family: 'Anton', sans-serif; font-size: 2.1rem; color: var(--navy); }
.stat-box .stat-label { font-family: 'Urbanist', sans-serif; font-size: .78rem; color: var(--muted); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; margin-top: 4px; }
.stat-box i { color: var(--accent); font-size: 1.6rem; margin-bottom: 8px; }

/* ---------- Cards / grid ---------- */
/* Flexbox instead of CSS Grid so a trailing partial row (e.g. 5 items in a
   4-column layout) centers itself instead of hanging left-aligned. */
.grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.grid-2 > * { flex: 1 1 calc(50% - 13px); max-width: calc(50% - 13px); }
.grid-3 > * { flex: 1 1 calc(33.333% - 18px); max-width: calc(33.333% - 18px); }
.grid-4 > * { flex: 1 1 calc(25% - 20px); max-width: calc(25% - 20px); }
@media (max-width: 960px) {
  .grid-4 > *, .grid-3 > * { flex-basis: calc(50% - 13px); max-width: calc(50% - 13px); }
}
@media (max-width: 600px) {
  .grid-4 > *, .grid-3 > *, .grid-2 > * { flex-basis: 100%; max-width: 100%; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .card-body { padding: 22px; }
.card .card-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--accent-light), #eef1fb);
  display: flex; align-items: center; justify-content: center;
}
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; position: relative; z-index: 1; }
.card:hover .card-img img { transform: scale(1.06); }
.card-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--accent-dark); opacity: .55; }
.card-img-placeholder i { font-size: 2.4rem; }
.card-img-placeholder span { font-family: 'Urbanist', sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.service-card { padding: 32px 26px; background: var(--card); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: var(--transition); height: 100%; }
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-light); color: var(--accent-dark); font-size: 1.4rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-family: 'Urbanist', sans-serif; text-transform: none; }
.service-card ul { margin-top: 14px; }
.service-card ul li { display: flex; gap: 8px; align-items: flex-start; padding: 4px 0; color: var(--muted); font-size: .9rem; font-family: 'Urbanist', sans-serif; }
.service-card ul li i { color: var(--accent); margin-top: 4px; }

.badge {
  display: inline-block; padding: 5px 14px; border-radius: 999px; font-size: .68rem; font-weight: 700;
  font-family: 'Urbanist', sans-serif; letter-spacing: .04em; text-transform: uppercase;
  background: var(--accent-light); color: var(--accent-dark);
}

/* ---------- Why choose / check list ---------- */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 700px) { .check-list { grid-template-columns: 1fr; } }
.check-item {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 18px; font-weight: 700; font-family: 'Urbanist', sans-serif; font-size: .92rem;
}
.check-item i { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.check-item.on-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }

/* ---------- Industries ---------- */
.industry-pill {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 26px 12px; transition: var(--transition);
}
.industry-pill:hover { background: var(--navy); color: #fff; transform: translateY(-4px); }
.industry-pill i { font-size: 1.7rem; color: var(--accent); }
.industry-pill span { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .02em; }

/* ---------- Dark trust section ---------- */
.trust-section { background: var(--navy); color: #fff; overflow: hidden; }
.trust-section h2 { color: #fff; }
.trust-section .check-item p { font-family: 'Urbanist', sans-serif; }
.trust-media { position: relative; }
.trust-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.trust-quote {
  position: absolute; bottom: -24px; left: -24px; max-width: 280px; background: #fff; color: var(--ink);
  padding: 20px 22px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); font-family: 'Urbanist', sans-serif;
}
.trust-quote p { font-size: .9rem; font-style: italic; margin-bottom: 8px; }
.trust-quote cite { font-size: .78rem; font-weight: 700; color: var(--accent); font-style: normal; }
@media (max-width: 860px) { .trust-quote { position: static; margin-top: 20px; max-width: none; } }

/* ---------- Testimonials ---------- */
.testimonial-card { background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border); padding: 30px; position: relative; }
.testimonial-card i.quote-icon { color: var(--accent-light); font-size: 2.4rem; position: absolute; top: 18px; right: 22px; }
.testimonial-card .stars { color: #f5b400; margin-bottom: 10px; }
.testimonial-card p { font-family: 'Urbanist', sans-serif; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* ---------- Partner marquee ---------- */
.marquee { overflow: hidden; display: flex; justify-content: center; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 28s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .partner-logo {
  display: flex; align-items: center; justify-content: center; height: 72px; padding: 0 28px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.marquee-track img { max-height: 34px; width: auto; transition: var(--transition); }
.marquee-track .partner-logo:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-2)); color: #fff; border-radius: var(--radius); padding: 64px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3cdec; max-width: 560px; margin: 0 auto 28px; font-family: 'Urbanist', sans-serif; text-transform: none; }

/* ---------- Breadcrumb / page header ---------- */
.page-header { background: var(--navy); color: #fff; padding: 70px 0 56px; position: relative; overflow: hidden; }
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p { font-family: 'Urbanist', sans-serif; text-transform: none; }
.breadcrumb { color: #a9b6e0; font-size: .85rem; font-family: 'Urbanist', sans-serif; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.breadcrumb a { color: #fff; }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: #a9b6e0; padding-top: 60px; font-family: 'Urbanist', sans-serif; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo-card { background: #fff; border-radius: var(--radius-sm); padding: 14px 18px; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-card img {
  height: 58px;
  filter: drop-shadow(0 2px 2px rgba(15,23,42,.2)) drop-shadow(0 8px 14px rgba(16,28,63,.3));
}
.footer-logo-card strong { font-family: 'Anton', sans-serif; text-transform: uppercase; color: var(--navy); font-size: .85rem; }
footer h5 { color: #fff; font-size: .95rem; margin-bottom: 18px; font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .02em; }
footer ul li { margin-bottom: 10px; }
footer ul li a:hover { color: var(--accent-light); }
footer .foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
footer .foot-contact i { color: var(--accent-light); margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; font-family: 'Urbanist', sans-serif; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: .82rem; color: var(--navy); text-transform: uppercase; letter-spacing: .02em; }
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 0 !important; width: 0 !important; opacity: 0 !important; pointer-events: none; }

.field-icon { position: relative; }
.field-icon > i {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: .95rem; pointer-events: none; transition: var(--transition);
}
.field-icon input, .field-icon select { padding-left: 44px; }
.field-icon textarea { padding-left: 44px; }
.field-icon.align-top > i { top: 20px; transform: none; }
.field-icon:focus-within > i { color: var(--accent); }
.field-icon input:focus, .field-icon select:focus, .field-icon textarea:focus { border-color: var(--accent); }
input[type="file"] {
  padding: 11px 14px; border: 2px dashed var(--border); background: var(--bg); cursor: pointer;
}
input[type="file"]:hover { border-color: var(--accent); background: var(--accent-light); }
input, textarea, select {
  padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Urbanist', sans-serif; font-size: .95rem; background: #fff; transition: var(--transition); width: 100%;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-light); }
.form-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 34px; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 20px; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; font-family: 'Urbanist', sans-serif; }
.alert-success { background: var(--accent-light); color: var(--accent-dark); border: 1px solid #b6e6cf; }
.alert-error { background: #fdeaea; color: #b3261e; border: 1px solid #f6c6c3; }
.errorlist { color: #b3261e; font-size: .82rem; margin: 4px 0 0; padding: 0; list-style: none; font-family: 'Urbanist', sans-serif; }

/* ---------- Misc ---------- */
.text-muted { color: var(--muted); font-family: 'Urbanist', sans-serif; text-transform: none; font-weight: 400; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: var(--transition); z-index: 400;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--accent); }
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: var(--shadow-lg); z-index: 400;
}
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 30px; font-family: 'Urbanist', sans-serif; }
.pagination a, .pagination span { padding: 9px 15px; border-radius: 999px; border: 1px solid var(--border); font-weight: 700; font-size: .85rem; }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

.filters-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; font-family: 'Urbanist', sans-serif; }
.filter-chip { padding: 9px 20px; border-radius: 999px; border: 1px solid var(--border); font-weight: 700; font-size: .82rem; background: #fff; text-transform: uppercase; letter-spacing: .02em; }
.filter-chip.active, .filter-chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.two-col p, .two-col > div { font-family: 'Urbanist', sans-serif; }
.two-col h2 { font-family: 'Anton', sans-serif; }

.timeline-list { border-left: 3px solid var(--border); padding-left: 24px; font-family: 'Urbanist', sans-serif; }
.timeline-list li { margin-bottom: 22px; position: relative; }
.timeline-list li::before { content: ''; position: absolute; left: -30px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }

/* ---------- SVG decorative wave divider ---------- */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; height: 60px; display: block; }

/* ---------- Touch / mobile interaction polish ---------- */
a, button, .btn, .filter-chip, .nav-link, .industry-pill, .card { -webkit-tap-highlight-color: transparent; }

/* Comfortable tap targets (44px is the accessibility guideline minimum) */
.topbar .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; margin-left: 4px; border-radius: 50%;
}
.footer-social a { width: 44px; height: 44px; }
nav.main-nav a.nav-link { min-height: 44px; display: flex; align-items: center; }
.filter-chip { min-height: 40px; display: inline-flex; align-items: center; }
.back-to-top, .whatsapp-float { width: 50px; height: 50px; }

/* Tactile press feedback for touch screens (no hover state to rely on) */
.btn:active { transform: scale(0.97); }
.filter-chip:active, .industry-pill:active, .card:active { transform: scale(0.98); }
.nav-dropdown-menu a:active { background: var(--accent-light); }

/* Keep a visible, accessible focus ring for keyboard users without an
   always-on outline that clutters mouse/touch interaction */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

@media (hover: none) {
  /* Touch devices: skip hover-only affordances that never trigger, avoid "sticky hover" after tap */
  .card:hover { transform: none; box-shadow: none; border-color: var(--border); }
  .btn-primary:hover, .btn-accent:hover { transform: none; }
}
