/* ============================================================
   HUBSVILLA — Stylesheet
   Palette  : Charcoal #0F172A + Royal Blue #2563EB (professional IT)
   Type     : Inter (body) + Plus Jakarta Sans (display)
   ============================================================ */

:root {
  --navy:        #0F172A;   /* charcoal / brand black (primary, matches logo) */
  --navy-2:      #1E293B;   /* slate (lighter primary) */
  --cyan:        #2563EB;   /* royal blue (accent — links, icons, hover) */
  --cyan-2:      #3B82F6;   /* bright blue (gradient end, hover highlight) */
  --coral:       #2563EB;   /* CTA blue start (unified tech palette) */
  --coral-2:     #3B82F6;   /* CTA blue end */
  --ink:         #0F172A;   /* body text */
  --ink-2:       #1E293B;
  --muted:       #64748B;
  --line:        #E5E7EB;
  --bg:          #FFFFFF;
  --bg-soft:     #F8FAFC;
  --bg-tint:     #EFF6FF;   /* light blue tint (icon chips, soft sections) */
  --shadow-sm:   0 2px 4px rgba(15, 23, 42, .05), 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md:   0 8px 24px rgba(15, 23, 42, .10), 0 2px 6px rgba(15, 23, 42, .05);
  --shadow-lg:   0 20px 50px rgba(15, 23, 42, .16);
  --radius:      14px;
  --radius-lg:   20px;
  --t:           cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--cyan); text-decoration: none; transition: color .2s var(--t); }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--t);
  font-family: inherit;
  text-align: center;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .50);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: var(--bg-tint); color: var(--navy); }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: all .25s var(--t);
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
}
.logo:hover { color: var(--navy); opacity: .88; }
.logo img {
  display: block;
  height: 44px;
  width: auto;
}
@media (max-width: 480px) {
  .logo img { height: 36px; }
}

.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.primary-nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.primary-nav a:hover { color: var(--cyan); }
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width .25s var(--t);
}
.primary-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  color: var(--ink-2);
  font-weight: 500;
}
.phone-link:hover { color: var(--cyan); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: all .2s var(--t);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 70px 0 50px;
  background:
    radial-gradient(1100px 500px at 90% -10%, rgba(37, 99, 235, .18), transparent 60%),
    radial-gradient(700px 400px at -10% 50%, rgba(59, 130, 246, .10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--cyan); }
.hero h1 { margin-bottom: 18px; }
.grad-text {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-bullets svg { color: #16a34a; }

.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

/* hero visual */
.hero-visual {
  position: relative;
  height: 460px;
}
.visual-blob {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, .26), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.visual-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.card-1 {
  top: 20px; left: 30px;
  width: 360px;
  padding: 22px;
  z-index: 2;
  animation: floatA 6s ease-in-out infinite;
}
.card-2 {
  bottom: 30px; right: 0;
  padding: 18px 22px;
  display: flex;
  gap: 18px;
  z-index: 3;
  animation: floatB 7s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.vc-head {
  display: flex; gap: 6px; margin-bottom: 16px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.d1 { background: #ff5f57; }
.d2 { background: #febc2e; }
.d3 { background: #28c840; }
.vc-body .bar-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-size: .85rem;
  color: var(--ink-2);
  font-weight: 500;
}
.bar {
  height: 8px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--navy) 100%);
  border-radius: 999px;
}
.kpi-mini { display: flex; flex-direction: column; }
.kpi-mini .kpi-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
}
.kpi-mini .kpi-lbl {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 4px;
}

/* trust strip */
.trust-strip {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trust-label {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-weight: 600;
  color: var(--ink-2);
  font-size: .95rem;
}

/* ============== STATS ============== */
.stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num, .stat-suffix {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(120deg, #fff 0%, var(--cyan-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-suffix { margin-left: 2px; }
.stat-lbl {
  margin-top: 10px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  letter-spacing: .04em;
}

/* ============== SECTIONS ============== */
.section { padding: 90px 0; }
.section-tint { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head.light h2 { color: #fff; }
.section-head.light .section-sub { color: rgba(255,255,255,.75); }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

/* ============== SERVICES ============== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  transition: all .3s var(--t);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
}
.service-card.highlight {
  border-color: var(--cyan);
  background: linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%);
}
.badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--coral);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.svc-link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--cyan);
}
.svc-link:hover { color: var(--navy); }

/* ============== INDUSTRIES ============== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .25s var(--t);
}
.industry-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ind-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ic) 15%, #fff);
  color: var(--ic);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.industry-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.industry-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ============== WHY US ============== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  padding: 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--coral) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--t);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow-md); }
.why-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: .25;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ============== PROCESS ============== */
.process-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 2px;
  background: rgba(255,255,255,.15);
  z-index: 0;
}
.proc-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.proc-num {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-2) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, .45);
}
.proc-step h3 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; }
.proc-step p { color: rgba(255,255,255,.7); font-size: .92rem; margin: 0; }

/* ============== TOOLS ============== */
.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.tool-chip {
  padding: 12px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-2);
  transition: all .2s var(--t);
}
.tool-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============== TESTIMONIALS ============== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.stars {
  color: #FBBF24;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card blockquote {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 22px;
  flex: 1;
}
.testi-card figcaption {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-card figcaption strong { color: var(--navy); font-size: .95rem; }
.testi-card figcaption span { color: var(--muted); font-size: .85rem; }
.testi-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 30px;
  font-style: italic;
}

/* ============== PRICING ============== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: all .25s var(--t);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3 { color: #fff; }
.price-card.featured .price { color: #fff; }
.price-card.featured .price strong { color: #fff; }
.price-card.featured .price span { color: rgba(255,255,255,.7); }
.price-card.featured ul li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.12); }
.featured-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price {
  font-size: 1rem;
  color: var(--muted);
  margin: 14px 0 22px;
}
.price strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  color: var(--navy);
  font-weight: 800;
  display: inline-block;
}
.price span { display: block; font-size: .85rem; margin-top: 4px; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  text-align: left;
}
.price-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  position: relative;
  padding-left: 26px;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  color: var(--cyan);
  font-weight: 700;
}
.price-card.featured ul li::before { color: var(--cyan-2); }

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-copy p { color: var(--muted); font-size: 1rem; }
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}
.about-pills span {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
}
.about-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.as-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all .25s var(--t);
}
.as-tile:nth-child(odd) { transform: translateY(0); }
.as-tile:nth-child(even) { transform: translateY(20px); }
.as-tile:hover { box-shadow: var(--shadow-md); border-color: var(--cyan); }
.as-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--navy) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.as-lbl { color: var(--muted); font-size: .85rem; }

/* ============== FAQ ============== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  padding-right: 20px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.6rem;
  color: var(--cyan);
  font-weight: 400;
  transition: transform .25s var(--t);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

/* ============== CTA STRIP ============== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
  padding: 60px 0;
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; margin-bottom: 6px; }
.cta-inner p { color: rgba(255,255,255,.92); margin: 0; max-width: 540px; }

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 42px; height: 42px;
  background: var(--bg-tint);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: 2px;
}
.contact-list a, .contact-list span {
  color: var(--ink-2);
  font-size: .95rem;
}

.contact-social {
  display: flex;
  gap: 10px;
}
.contact-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  transition: all .25s var(--t);
}
.contact-social a:hover {
  background: var(--cyan);
  transform: translateY(-2px);
}

/* form */
.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-field label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink-2);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink-2);
  transition: all .2s var(--t);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-actions { margin-top: 12px; }
.form-note {
  font-size: .8rem;
  color: var(--muted);
  margin: 12px 0 0;
  text-align: center;
}
.form-result {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 500;
}
.form-result.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-result.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 70px 0 0;
}
.site-footer .logo { color: #fff; }
.site-footer .logo:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.foot-brand p {
  margin-top: 18px;
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  max-width: 360px;
}
.foot-col h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col ul li a, .foot-contact li {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: color .2s var(--t);
}
.foot-col ul li a:hover { color: var(--cyan-2); }
.foot-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: rgba(255,255,255,.65); }
.foot-links a:hover { color: var(--cyan-2); }

/* ============== FLOATING WHATSAPP ============== */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 62px; height: 62px;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
  z-index: 90;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .65);
  animation: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  60%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============== MOBILE STICKY CTA ============== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, .08);
  padding: 12px 16px;
  gap: 10px;
  z-index: 89;
}
.mobile-cta a {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  font-size: .95rem;
}
.mc-call {
  background: var(--bg-tint);
  color: var(--navy);
  border: 1.5px solid var(--cyan);
}
.mc-quote {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 100%);
  color: #fff;
}

/* ============== ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--t), transform .6s var(--t);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .service-grid, .industry-grid, .why-grid, .testi-grid, .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; max-width: 500px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .primary-nav, .header-cta .phone-link, .header-cta .btn { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .primary-nav.open a:last-child { border-bottom: none; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }

  .service-grid, .industry-grid, .why-grid,
  .testi-grid, .price-grid, .form-row,
  .stats-grid, .process-track {
    grid-template-columns: 1fr;
  }
  .stats-grid { gap: 26px; }
  .stats { padding: 50px 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-bottom { flex-direction: column; text-align: center; }

  .cta-inner { flex-direction: column; text-align: center; }

  .price-card.featured { transform: none; }
  .as-tile:nth-child(even) { transform: none; }

  body { padding-bottom: 72px; }
  .mobile-cta { display: flex; }
  .wa-float { bottom: 84px; }

  .hero { padding: 50px 0 40px; }
  .hero-visual { height: 320px; }
  .card-1 { width: 280px; padding: 16px; left: 10px; }
  .card-1 .vc-body .bar-row { grid-template-columns: 90px 1fr; font-size: .8rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .lead { font-size: 1rem; }
  .btn { padding: 11px 18px; font-size: .9rem; }
  .btn-lg { padding: 13px 22px; }
  .hero-ctas .btn { width: 100%; }
  .stat-num, .stat-suffix { font-size: 2.2rem; }
}
