/* ================================================
   BIZFUNNEL — Main Stylesheet
   ================================================ */

/* ---------- CSS Variables — BizFunnel Brand ---------- */
:root {
  /* Brand blue-indigo extracted from logo */
  --primary:        #5558E3;
  --primary-dark:   #4245c8;
  --primary-light:  #6b6ef5;
  --primary-rgb:    85,88,227;

  /* Backgrounds */
  --dark:           #0d0e2c;   /* deep navy matching logo backdrop */
  --dark-2:         #13142e;
  --dark-3:         #1a1b40;

  /* Accents */
  --accent:         #00c6ae;   /* teal accent for variety */
  --purple:         #7c3aed;
  --teal:           #0ea5a0;
  --blue:           #2563eb;
  --green:          #16a34a;
  --red:            #dc2626;

  /* Neutrals */
  --light:          #f5f5ff;   /* faint indigo tint on white */
  --gray:           #6b7280;
  --gray-light:     #e5e7eb;
  --white:          #ffffff;

  /* Misc */
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 24px rgba(85,88,227,.10);
  --shadow-lg:      0 12px 40px rgba(85,88,227,.16);
  --font:           'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:     0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark-2);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary    { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn--outline    { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--outline-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--dark); }
.btn--ghost      { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--white      { background: var(--white); color: var(--primary); font-weight: 700; }
.btn--white:hover { background: var(--light); }
.btn--full       { width: 100%; justify-content: center; }
.btn--lg         { padding: .85rem 2rem; font-size: 1rem; }

/* ---------- Section Helpers ---------- */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-label.light { color: rgba(255,255,255,.7); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3rem;
}
.section-sub.light { color: rgba(255,255,255,.7); }

.highlight { color: var(--primary); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
}
.card-link:hover { gap: .6rem; }

/* ================================================
   TOP BAR
   ================================================ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  padding: .45rem 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__left { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topbar__right { display: flex; gap: .75rem; }
.topbar__right a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .7rem;
  font-weight: 700;
}
.topbar__right a:hover { background: var(--primary); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Logo image variants */
.logo-img { height: 40px; width: auto; display: block; }
.logo-img--dark  { display: block; }
.logo-img--light { display: none; }
.logo-img--footer { height: 36px; width: auto; display: block; }

/* On dark backgrounds (mobile menu open), show light logo */
.navbar__menu.open ~ .navbar__logo .logo-img--dark  { display: none; }
.navbar__menu.open ~ .navbar__logo .logo-img--light { display: block; }

/* Active nav link — used on all inner pages */
.nav-active { color: var(--primary) !important; }
.nav-active::after { width: 100% !important; }

/* Legacy text spans (not used but safe to keep) */
.logo-biz    { color: var(--dark); }
.logo-funnel { color: var(--primary); }

.navbar__menu {
  display: flex;
  gap: 2rem;
}
.navbar__menu a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--dark-2);
  position: relative;
}
.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.navbar__menu a:hover::after { width: 100%; }
.navbar__menu a:hover { color: var(--primary); }

.navbar__ctas { display: flex; gap: .75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0e0f35 50%, #131450 100%);
  padding: 5rem 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(85,88,227,.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 4rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(85,88,227,.15);
  border: 1px solid rgba(85,88,227,.4);
  color: var(--white);
  padding: .35rem 1rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero__badge::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), .7);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero__sub strong { color: var(--primary); }

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: .15rem;
}

/* Hero visual */
.hero__visual { display: flex; align-items: center; justify-content: center; }

.hero__img-wrap {
  width: 100%;
  max-width: 540px;
  position: relative;
  padding: 1.5rem 1.5rem 0;
}

/* Real team photo frame */
.hero__img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 4px rgba(85,88,227,.35),
    0 0 0 8px rgba(85,88,227,.12),
    0 32px 64px rgba(0,0,0,.45);
  border: 2px solid rgba(255,255,255,.12);
}

.hero__team-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.92) saturate(1.1);
}

/* Bottom stat bar overlaid on photo */
.hero__img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(8,9,30,.85) 100%);
  padding: 2rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hio-stat {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hio-stat strong {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hio-stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}
.hio-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* Floating stat cards (positioned relative to .hero__img-wrap) */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .85rem;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
  white-space: nowrap;
}
.floating-card strong { display: block; font-weight: 700; color: var(--dark); font-size: .88rem; }
.floating-card small  { color: var(--gray); font-size: .73rem; }
.fc1 { top: 2.5rem; left: -1rem; animation-delay: 0s; }
.fc2 { bottom: 5rem; right: -1rem; animation-delay: 1.8s; }
.fc-icon { font-size: 1.4rem; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Trust strip */
.hero__trust {
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.hero__trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 0;
}
.hero__trust-inner span {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
}

/* ---- Shared check-icon utility (used in hero strip, contact, products page) ---- */
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 500;
}
.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

/* contact-cta__points uses .trust-item — ensure correct colour & spacing */
.contact-cta__points .trust-item {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
}

/* ================================================
   ABOUT SECTION — "Built Different, Delivered Better"
   ================================================ */
.about-section {
  padding: 0 0 5rem;
  background: var(--white);
  overflow: hidden;
}

/* Top metrics ribbon */
.about__ribbon {
  background: var(--dark);
  padding: 1.1rem 0;
  margin-bottom: 4rem;
}
.about__ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.rib-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  text-align: center;
}
.rib-item strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.rib-item span {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .15rem;
}
.rib-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Two-col head */
.about__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.about__head-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  padding-top: .5rem;
}

/* 4-step horizontal approach */
.about__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}
.astep {
  flex: 1;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--gray-light);
  position: relative;
}
.astep:last-child { border-right: none; }
.astep:hover { background: var(--white); }

.astep__num {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(85,88,227,.08);
  line-height: 1;
}
.astep__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
}
.astep__icon svg { width: 20px; height: 20px; }
.astep__icon--blue   { background: rgba(37,99,235,.1);  color: var(--blue); }
.astep__icon--purple { background: rgba(85,88,227,.1);  color: var(--primary); }
.astep__icon--teal   { background: rgba(14,165,160,.1); color: var(--teal); }
.astep__icon--green  { background: rgba(22,163,74,.1);  color: var(--green); }

.astep h3 { font-size: .95rem; font-weight: 800; color: var(--dark); margin-bottom: .4rem; }
.astep p  { font-size: .82rem; color: var(--gray); line-height: 1.55; margin-bottom: .75rem; }
.astep__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(85,88,227,.08);
  padding: .18rem .6rem;
  border-radius: 100px;
  letter-spacing: .05em;
}

.astep__connector {
  padding: 2rem 0;
  font-size: 1.4rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  align-self: center;
}

/* Dark achievement strip */
.about__achieve {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.achieve-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.achieve-item svg { color: var(--primary); flex-shrink: 0; }

/* ================================================
   MID-PAGE CTA — "Let's Execute It" SPLIT LAYOUT
   ================================================ */
.mid-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #0e0f35 60%, #131450 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(85,88,227,.15);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.mid-cta__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left column */
.mid-cta__eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.mc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}

.mid-cta__left h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.mid-cta__left > p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.mid-cta__reasons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 1.75rem;
}
.mid-cta__reasons li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.mid-cta__reasons li strong { color: var(--white); }
.mc-bullet {
  color: var(--primary);
  font-size: .85rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.mid-cta__availability {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  padding: .65rem 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.mc-online {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.mid-cta__availability strong { color: rgba(255,255,255,.8); }

/* Right action card */
.mc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.mc-card__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
  margin-bottom: 1.1rem;
}

.mc-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 10px;
  margin-bottom: .6rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.mc-action:last-of-type { margin-bottom: 1.25rem; }
.mc-action:hover { transform: translateX(3px); }

.mc-action__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mc-action__icon svg { width: 18px; height: 18px; }

.mc-action strong { display: block; font-size: .9rem; font-weight: 700; }
.mc-action small  { font-size: .75rem; }

.mc-action--primary {
  background: rgba(85,88,227,.07);
  border-color: rgba(85,88,227,.2);
  color: var(--dark);
}
.mc-action--primary:hover { background: rgba(85,88,227,.12); border-color: var(--primary); }
.mc-action--primary .mc-action__icon { background: var(--primary); color: var(--white); }
.mc-action--primary small { color: var(--gray); }

.mc-action--wa {
  background: rgba(37,211,102,.07);
  border-color: rgba(37,211,102,.25);
  color: var(--dark);
}
.mc-action--wa:hover { background: rgba(37,211,102,.13); border-color: #25d366; }
.mc-action--wa .mc-action__icon { background: #25d366; color: var(--white); }
.mc-action--wa small { color: var(--gray); }

.mc-action--call {
  background: var(--light);
  border-color: var(--gray-light);
  color: var(--dark);
}
.mc-action--call:hover { border-color: var(--primary); }
.mc-action--call .mc-action__icon { background: rgba(85,88,227,.1); color: var(--primary); }
.mc-action--call small { color: var(--gray); }

.mc-card__note {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--gray);
  justify-content: center;
  text-align: center;
}
.mc-card__note svg { flex-shrink: 0; }

/* ================================================
   FAQ SECTION — 2-column card grid
   ================================================ */
.faq-section {
  padding: 5rem 0;
  background: var(--light);
}

.faq__intro { text-align: center; margin-bottom: 3rem; }
.faq__intro .section-sub { margin-inline: auto; }

/* 2-col grid instead of list */
.faq__cardgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-light);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(85,88,227,.1);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-item.open .faq-item__q { color: var(--primary); }
.faq-item__q:hover { background: var(--light); }

.faq-num {
  width: 28px; height: 28px;
  background: rgba(85,88,227,.1);
  color: var(--primary);
  border-radius: 7px;
  font-size: .72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq-item.open .faq-num { background: var(--primary); color: var(--white); }

.faq-arrow {
  width: 16px; height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--gray);
  transition: transform .3s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-item__a {
  max-height: 300px;
  padding: 0 1.1rem 1.1rem 3rem;
}
.faq-item__a p { font-size: .88rem; color: var(--gray); line-height: 1.7; }
.faq-item__a strong { color: var(--dark); }

/* Bottom CTA strip */
.faq__cta-strip {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.faq-strip__text { display: flex; flex-direction: column; gap: .2rem; }
.faq-strip__text strong { font-size: 1rem; font-weight: 800; color: var(--white); }
.faq-strip__text span   { font-size: .85rem; color: rgba(255,255,255,.55); }
.faq-strip__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.faq-wa-btn {
  background: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}
.faq-wa-btn:hover { background: #1ebc58; transform: translateY(-1px); }


/* ================================================
   SERVICES
   ================================================ */
.services {
  padding: 5rem 0;
  background: var(--light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-light);
  text-align: center;
}
.services__footer p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 480px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-card__icon.orange { background: rgba(85,88,227,.12); color: var(--primary); }
.service-card__icon.purple { background: rgba(124,58,237,.12); color: #7c3aed; }
.service-card__icon.teal   { background: rgba(0,198,174,.12);  color: var(--accent); }
.service-card__icon.blue   { background: rgba(37,99,235,.12);  color: var(--blue); }
.service-card__icon.green  { background: rgba(22,163,74,.12);  color: var(--green); }
.service-card__icon.red    { background: rgba(220,38,38,.12);  color: var(--red); }

.service-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 100px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--dark);
}
.service-card p { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ================================================
   PRODUCTS
   ================================================ */
.products {
  padding: 5rem 0;
  background: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ---- New image-based product card ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Image section */
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
  flex-shrink: 0;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.05) 60%);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: .85rem 1rem;
}

.product-card__tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.45);
  color: var(--white);
  padding: .25rem .7rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.product-card__tag-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--white);
  padding: .25rem .65rem;
  border-radius: 100px;
}

/* Body section */
.product-card__body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__icon-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.product-card__icon-row h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

/* Small icon pill */
.pci {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pci--purple { background: rgba(85,88,227,.12); }
.pci--green  { background: rgba(22,163,74,.12); }
.pci--blue   { background: rgba(37,99,235,.12); }
.pci--orange { background: rgba(217,119,6,.12); }
.pci--teal   { background: rgba(14,165,160,.12); }
.pci--red    { background: rgba(220,38,38,.12); }

/* Feature list */
.product-features {
  display: flex;
  flex-direction: column;
  gap: .42rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.product-features li {
  font-size: .86rem;
  color: var(--gray);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: .8rem;
}

/* Card footer */
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
}
.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.product-card__meta span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
  font-weight: 600;
}
.product-card__meta strong {
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
}

/* Products section footer CTA */
.products__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-light);
  text-align: center;
}
.products__footer p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 460px;
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why {
  padding: 5rem 0;
  background: var(--light);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--primary); }

.why-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--dark);
}
.why-card p { font-size: .88rem; color: var(--gray); margin-bottom: .5rem; }

/* ================================================
   RESULTS
   ================================================ */
.results {
  padding: 5rem 0;
  background: var(--dark);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.result-card:hover { background: rgba(255,255,255,.11); border-color: var(--primary); }
.result-card--accent { background: rgba(85,88,227,.12); border-color: rgba(85,88,227,.3); }

.result-card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}

.result-metric {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 1rem;
}
.result-metric strong {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.result-metric span {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

.result-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 1rem; }

.result-card__links { display: flex; gap: 1rem; }
.result-card__links a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

/* ================================================
   PROCESS
   ================================================ */
.process {
  padding: 5rem 0;
  background: var(--white);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-step {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.process-step:hover::before { transform: scaleY(1); }
.process-step:hover { box-shadow: var(--shadow); }

.process-step__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(85,88,227,.12);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
}
.process-step__icon { font-size: 2rem; margin-bottom: .75rem; }

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.process-step p { font-size: .88rem; color: var(--gray); margin-bottom: 1rem; }

.process-step__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-light);
  font-size: .8rem;
}
.process-step__meta span { color: var(--gray); }
.process-step__meta strong { color: var(--primary); font-weight: 700; }

/* ================================================
   TECHNOLOGIES
   ================================================ */
.tech {
  padding: 5rem 0 0;
  background: var(--dark);
  overflow: hidden;
}

.tech .section-label { color: rgba(255,255,255,.5); }
.tech .section-title { color: var(--white); }
.tech .section-sub   { color: rgba(255,255,255,.6); }

.tech__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.tech-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 1.2rem .6rem .9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
  text-align: center;
}
.tech-item:hover {
  background: rgba(85,88,227,.18);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(85,88,227,.25);
}

/* Real tech logo images */
.tech-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: brightness(1) drop-shadow(0 1px 3px rgba(0,0,0,.3));
  transition: filter var(--transition), transform var(--transition);
}
.tech-item:hover .tech-logo-img {
  filter: brightness(1.15) drop-shadow(0 2px 6px rgba(85,88,227,.4));
  transform: scale(1.08);
}
/* AWS logo is dark by default — brighten it on dark bg */
.tech-logo-img--aws {
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.3));
}
.tech-item:hover .tech-logo-img--aws {
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(85,88,227,.4));
}

.tech__banner {
  background: var(--primary);
  padding: 1.25rem 0;
  margin-top: 3rem;
}
.tech__banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.tech__banner-inner > div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.tech__banner-inner strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.tech__banner-inner span {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}

/* ================================================
   VIDEOS
   ================================================ */
.videos {
  padding: 5rem 0;
  background: var(--dark-2);
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.video-thumb {
  cursor: pointer;
}
.video-thumb p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: .6rem;
  text-align: center;
}

.video-thumb__img {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.video-thumb__img:hover { border-color: var(--primary); }

.video-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.play-btn {
  width: 52px; height: 52px;
  background: rgba(85,88,227,.9);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
  z-index: 2;
}
.play-btn:hover { background: var(--primary); transform: scale(1.1); }
.play-btn--sm { width: 40px; height: 40px; font-size: .9rem; }

.videos__cta { text-align: center; }


/* ================================================
   TESTIMONIALS
   ================================================ */
/* ================================================
   TESTIMONIALS — Google Reviews Style
   ================================================ */
.testimonials {
  padding: 5rem 0;
  background: var(--light);
}

/* Header row: title + Google rating badge */
.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.testi-header__left { max-width: 500px; }
.testi-header__left .section-sub { margin-bottom: 0; }

/* Google overall rating badge */
.google-rating-badge {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  min-width: 170px;
  text-align: center;
}
.grb-top {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.google-logo { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.grb-label { font-size: .78rem; font-weight: 700; color: var(--dark-2); }

.grb-score {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-top: .1rem;
}

.grb-stars {
  display: flex;
  gap: 2px;
}
.grb-stars svg { width: 18px; height: 18px; display: block; }

.grb-count {
  font-size: .75rem;
  color: var(--gray);
  font-weight: 500;
}

.grb-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 700;
  color: #4285F4;
  margin-top: .25rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.grb-link:hover { color: #2563eb; }

/* ---- Review card grid: 3 cols ---- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ---- Individual Google review card ---- */
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(66,133,244,.3);
}

/* Top row: avatar + name/date + Google G */
.testi-card__top {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
  letter-spacing: .03em;
}

.testi-meta { flex: 1; min-width: 0; }
.testi-meta strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testi-meta small {
  font-size: .75rem;
  color: var(--gray);
}

/* Small Google G icon — top-right of card */
.g-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-left: auto;
  display: block;
}

/* Stars row — SVG stars */
.testi-stars {
  display: flex;
  gap: 2px;
}
.testi-stars svg { width: 16px; height: 16px; display: block; }

/* Review text */
.testi-text {
  font-size: .875rem;
  color: #3c4043;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Service tag pill */
.testi-service {
  display: inline-flex;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(85,88,227,.08);
  padding: .22rem .7rem;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: auto;
}

/* Bottom CTA row */
.testi-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.testi-footer__divider {
  color: var(--gray-light);
  font-size: 1.2rem;
}
.testi-footer .btn--outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* ================================================
   CONTACT CTA
   ================================================ */
/* ================================================
   CONTACT SECTION — Professional
   ================================================ */
.contact-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #07081c 0%, #0d0e2c 50%, #111340 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.contact-blob--1 {
  width: 400px; height: 400px;
  background: rgba(85,88,227,.18);
  top: -100px; left: -100px;
}
.contact-blob--2 {
  width: 300px; height: 300px;
  background: rgba(0,198,174,.12);
  bottom: -60px; right: 10%;
}

.contact-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ---- Left column ---- */
.contact-cta__text .section-label { color: rgba(255,255,255,.5); }

.contact-cta__text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .9rem;
}

.contact-cta__text > p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Stats row */
.contact-stats {
  display: flex;
  gap: 0;
  margin-bottom: 1.75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.cstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem .75rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.cstat:last-child { border-right: none; }
.cstat strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .2rem;
}
.cstat span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Checklist */
.contact-cta__points {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}
.contact-cta__points .trust-item {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  gap: .55rem;
}

/* Contact channel cards */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.cchannel {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none;
}
.cchannel:hover {
  background: rgba(85,88,227,.18);
  border-color: rgba(85,88,227,.4);
  transform: translateX(4px);
}
.cchannel__icon {
  width: 38px; height: 38px;
  background: rgba(85,88,227,.2);
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--primary-light);
}
.cchannel__icon svg { width: 17px; height: 17px; }
.cchannel__icon--wa {
  background: rgba(37,211,102,.15);
  color: #25d366;
}
.cchannel strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
}
.cchannel span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* Office hours */
.contact-hours {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.contact-hours svg { flex-shrink: 0; color: rgba(255,255,255,.35); }

/* ---- Right column — form card ---- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  overflow: hidden;
}

.contact-form-header {
  background: linear-gradient(135deg, var(--primary) 0%, #4245c8 100%);
  padding: 1.6rem 2rem;
}
.contact-form-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .25rem;
}
.contact-form-header p {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}

.contact-form {
  padding: 1.75rem 2rem 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .9rem;
}
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: .02em;
}
.req { color: var(--primary); margin-left: .1rem; }

/* Input wrapper with icon */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: .85rem;
  width: 15px; height: 15px;
  color: #9ca3af;
  pointer-events: none;
  flex-shrink: 0;
  z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .72rem 1rem .72rem 2.5rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  background: #f9fafb;
  appearance: none;
}
.form-group textarea {
  padding-left: 1rem;
  resize: vertical;
  min-height: 100px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8c4; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(85,88,227,.1);
}

/* Submit button */
.contact-submit {
  gap: .6rem;
  font-size: 1rem;
  padding: .9rem 1.5rem;
  letter-spacing: .01em;
  border-radius: 10px;
  margin-top: .25rem;
}
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(85,88,227,.35); }

/* Privacy note */
.form-privacy {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: #9ca3af;
  margin-top: .9rem;
  justify-content: center;
  text-align: center;
}
.form-privacy svg { flex-shrink: 0; color: #9ca3af; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #08091e;
  color: rgba(255,255,255,.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 1.25rem 3rem;
  max-width: 1200px;
  margin-inline: auto;
}

.footer__logo {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer__brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }

.footer__socials { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer__socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  transition: var(--transition);
}
.footer__socials a:hover { background: var(--primary); color: var(--white); }

.footer__col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--primary); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom-inner a { color: rgba(255,255,255,.55); text-decoration: underline; }
.footer__bottom-inner a:hover { color: var(--primary); }

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 800;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { transform: translateY(-2px); background: var(--primary-dark); }

/* ================================================
   RESPONSIVE — Tablet (≤900px)
   ================================================ */
@media (max-width: 900px) {
  /* Topbar */
  .topbar__left span:nth-child(3) { display: none; }

  /* Navbar */
  .navbar__menu,
  .navbar__ctas { display: none; }
  .hamburger { display: flex; }

  .navbar__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0;
    background: var(--white);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    z-index: 850;
    box-shadow: var(--shadow-lg);
  }
  .navbar__menu.open ~ .navbar__ctas {
    display: flex;
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem; right: 1.5rem;
    z-index: 851;
    flex-direction: column;
    gap: .75rem;
  }
  .navbar__menu a { font-size: 1.15rem; }

  /* Hero — tablet */
  .hero { padding-top: 3rem; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding-bottom: 2.5rem; }
  .hero__badge { margin-inline: auto; }
  .hero__sub    { margin-inline: auto; font-size: .97rem; }
  .hero__actions { justify-content: center; }
  .hero__stats  { justify-content: center; gap: 1.5rem; }
  .hero__visual { display: flex; }
  .hero__img-wrap { max-width: 460px; margin-inline: auto; padding: .5rem .5rem 0; }
  .hero__team-img { height: 240px; }
  .fc1 { top: 1rem; left: -.25rem; font-size: .78rem; padding: .5rem .75rem; gap: .5rem; }
  .fc2 { bottom: 4rem; right: -.25rem; font-size: .78rem; padding: .5rem .75rem; gap: .5rem; }
  .fc-icon { font-size: 1.1rem; }

  /* Grids */
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .products__grid  { grid-template-columns: repeat(2, 1fr); }
  .why__grid       { grid-template-columns: repeat(2, 1fr); }
  .results__grid   { grid-template-columns: 1fr; }
  .process__grid   { grid-template-columns: repeat(2, 1fr); }
  .tech__grid      { grid-template-columns: repeat(4, 1fr); }
  .videos__grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testi-header { flex-direction: column; align-items: flex-start; }
  .google-rating-badge { align-self: flex-start; flex-direction: row; flex-wrap: wrap; gap: .5rem 1.25rem; align-items: center; min-width: unset; text-align: left; }

  /* Contact */
  .contact-cta__inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem 1.25rem 1.5rem; }
  .contact-form-header { padding: 1.25rem 1.25rem; }

  /* About */
  .about__ribbon-inner { gap: 1rem; }
  .rib-item { padding: 0 1.5rem; }
  .about__head { grid-template-columns: 1fr; gap: 1rem; }
  .about__steps { flex-direction: column; }
  .astep { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .astep:last-child { border-bottom: none; }
  .astep__connector { display: none; }

  /* Mid CTA */
  .mid-cta__split { grid-template-columns: 1fr; gap: 3rem; }

  /* FAQ */
  .faq__cardgrid { grid-template-columns: 1fr; }
  .faq__cta-strip { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
}

/* ================================================
   RESPONSIVE — Mobile (≤600px)
   ================================================ */
@media (max-width: 600px) {
  /* Topbar */
  .topbar__left span:nth-child(2) { display: none; }
  .topbar__right { display: none; }

  /* Hero — mobile */
  .hero { padding-top: 2rem; }
  .hero__inner { gap: 1.75rem; padding-bottom: 2rem; }
  .hero__badge { font-size: .75rem; padding: .3rem .85rem; }
  .hero__title { font-size: clamp(1.7rem, 7vw, 2.2rem); margin-bottom: 1rem; }
  .hero__sub   { font-size: .9rem; margin-bottom: 1.5rem; }
  .hero__actions { flex-direction: column; gap: .75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 1.25rem; }
  .stat strong { font-size: 1.5rem; }
  /* Hide floating cards — they overflow on small screens */
  .floating-card { display: none; }
  /* Compact image */
  .hero__img-wrap { padding: 0; max-width: 100%; }
  .hero__team-img { height: 200px; border-radius: var(--radius); }
  .hero__img-frame {
    box-shadow: 0 0 0 3px rgba(85,88,227,.3), 0 16px 40px rgba(0,0,0,.4);
  }
  /* Trust strip — horizontal wrap */
  .hero__trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem .9rem;
    padding: .85rem 0;
  }
  .hero__trust-inner .trust-item { font-size: .78rem; white-space: nowrap; }

  /* Sections */
  /* About */
  .rib-divider { display: none; }
  .rib-item { padding: .4rem 1rem; }
  .about__ribbon-inner { gap: .5rem 0; justify-content: space-around; }

  /* Mid CTA */
  .mc-card { padding: 1.5rem 1.1rem; }

  /* FAQ */
  .faq__cta-strip { padding: 1.25rem; }
  .faq-strip__actions { width: 100%; }
  .faq-strip__actions .btn { flex: 1; justify-content: center; }

  .services__grid      { grid-template-columns: 1fr; }
  .products__grid      { grid-template-columns: 1fr; }
  .why__grid           { grid-template-columns: 1fr; }
  .process__grid       { grid-template-columns: 1fr; }
  .tech__grid          { grid-template-columns: repeat(3, 1fr); }
  .videos__grid        { grid-template-columns: 1fr; }
  .testimonials__grid  { grid-template-columns: 1fr; }
  .testi-footer        { flex-direction: column; align-items: stretch; }
  .testi-footer .btn   { justify-content: center; }
  .testi-footer__divider { display: none; }

  /* Contact form */
  .contact-form { padding: 1.25rem 1rem; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; }

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

  /* Tech banner */
  .tech__banner-inner { flex-direction: column; text-align: center; }

  /* Result metric */
  .result-metric strong { font-size: 2rem; }
}

/* ---- Extra small screens (≤400px) ---- */
@media (max-width: 400px) {
  .hero__title { font-size: 1.65rem; }
  .hero__trust-inner { gap: .35rem .7rem; }
  .hero__stats { justify-content: space-around; gap: .75rem; }
  .stat strong { font-size: 1.35rem; }
  .tech__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================
   WHATSAPP STICKY BUTTON
   ================================================ */
.whatsapp-sticky {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.whatsapp-sticky a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 18px 12px;
  border-radius: 10px 0 0 10px;
  box-shadow: -3px 4px 20px rgba(37, 211, 102, 0.45);
  transition: padding-left var(--transition), box-shadow var(--transition), background var(--transition);
}

.whatsapp-sticky a:hover {
  background: #1ebe5a;
  padding-left: 16px;
  box-shadow: -4px 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  flex-shrink: 0;
}

.whatsapp-sticky .wa-label {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
}

@keyframes waPulse {
  0%, 100% { box-shadow: -3px 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: -3px 4px 32px rgba(37,211,102,.75); }
}

.whatsapp-sticky a {
  animation: waPulse 2.8s ease-in-out infinite;
}

@media (max-width: 480px) {
  .whatsapp-sticky a {
    font-size: 11px;
    padding: 14px 8px;
  }
  .whatsapp-sticky svg {
    width: 18px;
    height: 18px;
  }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
