/* ═══════════════════════════════════════════════════════════════
   PILLAR COMPONENTS — three-pillar homepage section, IT Services,
   Global Reach. Written with logical properties throughout (no RTL
   override block needed for anything in this file).
   ═══════════════════════════════════════════════════════════════ */

/* ── HOMEPAGE THREE-PILLAR SECTION ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid transparent;
  border-radius: 10px;
  padding: 2.25rem 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pillar-card-consulting { border-top-color: var(--gold); }
.pillar-card-it         { border-top-color: var(--pillar-it); }
.pillar-card-global     { border-top-color: var(--pillar-global); }

.pillar-card-icon {
  width: 48px; height: 48px;
  background: var(--sky);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-block-end: 1.25rem;
}

.pillar-card h3 { font-size: 1.15rem; font-weight: 700; margin-block-end: 0.6rem; }

.pillar-card-promise {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.7; margin-block-end: 1.1rem;
}

.pillar-card-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-block-end: 1.5rem;
  flex-grow: 1;
}

.pillar-card-bullets li {
  font-size: 0.85rem; color: var(--text);
  padding-inline-start: 1.1rem;
  position: relative;
}

.pillar-card-bullets li::before {
  content: '';
  position: absolute; inset-inline-start: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}

.pillar-card-it .pillar-card-bullets li::before     { background: var(--pillar-it); }
.pillar-card-global .pillar-card-bullets li::before { background: var(--pillar-global); }

.pillar-card-link {
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
  letter-spacing: 0.03em; align-self: flex-start; margin-block-start: auto;
}

.pillar-card:hover .pillar-card-link { color: var(--gold); }
.pillar-card-it:hover .pillar-card-link     { color: var(--pillar-it); }
.pillar-card-global:hover .pillar-card-link { color: var(--pillar-global); }

/* ── IT SERVICES: CAPABILITIES LIST ── */
.capabilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.capability-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.25rem 1.5rem;
  font-size: 0.9rem; color: var(--text); line-height: 1.6;
}

.capability-item::before { content: '✓'; color: var(--pillar-it); font-weight: 700; flex-shrink: 0; }

/* ── GLOBAL REACH: ILLUSTRATIVE MOCKUP ── */
.gr-mock {
  max-width: 560px; margin-inline: auto; margin-block-end: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px; padding: 1.5rem;
}

.gr-mock-toolbar { display: flex; gap: 0.4rem; margin-block-end: 1rem; }
.gr-mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); }

.gr-mock-zones {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
}

.gr-mock-zone {
  aspect-ratio: 1; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}

.gr-mock-caption {
  text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.5);
  margin-block-start: 1rem; letter-spacing: 0.05em;
}

/* ── GLOBAL REACH: SUBSCRIPTION PLANS ── */
.gr-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 760px; margin-inline: auto;
}

.gr-plan-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem; position: relative;
}

.gr-plan-card.popular { border-color: var(--gold); box-shadow: var(--shadow-md); }

.gr-plan-badge {
  position: absolute; top: -12px; inset-inline-start: 2rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem; border-radius: 20px;
}

.gr-plan-name  { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-block-end: 0.5rem; }
.gr-plan-price { font-size: 2rem; font-weight: 800; color: var(--navy); margin-block-end: 1.25rem; }
.gr-plan-price span { font-size: 0.85rem; font-weight: 500; color: var(--muted); }

.gr-plan-features {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
  margin-block-end: 1.75rem;
}

.gr-plan-features li {
  font-size: 0.875rem; color: var(--text);
  padding-inline-start: 1.2rem; position: relative;
}

.gr-plan-features li::before { content: '✓'; position: absolute; inset-inline-start: 0; color: var(--gold); font-weight: 700; }

.gr-sync-note {
  text-align: center; font-size: 0.78rem; color: var(--muted);
  max-width: 620px; margin: 1.5rem auto 0;
}

/* ── SHARED ICON SIZING (inline SVG icon set, replaces emoji) ── */
.service-icon svg,
.pillar-card-icon svg,
.capability-item svg,
.portfolio-icon svg,
.pillar-icon svg,
.value-icon svg,
.check svg,
.approach-strip .icon svg {
  width: 26px; height: 26px; color: var(--navy);
}

.pillar-card-it .pillar-card-icon svg     { color: var(--pillar-it); }
.pillar-card-global .pillar-card-icon svg { color: var(--pillar-global); }
.check svg { width: 18px; height: 18px; color: var(--white); }
.capability-item svg { width: 20px; height: 20px; color: var(--pillar-it); flex-shrink: 0; }
.value-icon svg { width: 22px; height: 22px; }

/* ── HOMEPAGE PILLAR CARD — Global Reach featured treatment ── */
.pillar-card-featured { position: relative; border-top-color: var(--gold); }

.pillar-card-badge {
  position: absolute; top: -12px; inset-inline-start: 2rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem; border-radius: 20px;
  text-transform: uppercase;
}

.pillar-card-link-strong {
  color: var(--navy);
  background: var(--gold);
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-weight: 700;
}

.pillar-card-global:hover .pillar-card-link-strong { color: var(--navy); }

/* ── HOMEPAGE GLOBAL REACH TEASER BAND ── */
.gr-teaser { background: var(--navy); padding: 5rem 2rem; }

.gr-teaser-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem;
  align-items: center;
}

.gr-teaser .section-label { text-align: start; }
.gr-teaser .section-title { text-align: start; color: var(--white); }
.gr-teaser .section-sub   { text-align: start; margin-inline: 0; color: rgba(255,255,255,0.72); }

.gr-teaser .btn-cta {
  background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700;
}
.gr-teaser .btn-cta:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

.gr-teaser-visual { display: flex; flex-direction: column; align-items: center; }

.gr-mock-compact { max-width: 380px; }

.gr-mock-whiteboard {
  background: rgba(255,255,255,0.08); border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 8px; padding: 1.5rem; display: flex; align-items: center; justify-content: center;
  margin-block-end: 1rem;
}
.gr-mock-whiteboard svg { width: 40px; height: 40px; color: rgba(255,255,255,0.6); }

.gr-chat-bubble {
  background: var(--white); border-radius: 10px 10px 10px 2px;
  padding: 0.85rem 1rem; display: flex; flex-direction: column; gap: 0.25rem;
  max-width: 90%;
}

.gr-chat-original { font-size: 0.8rem; color: var(--muted); }
.gr-chat-translated { font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.gr-chat-tag { font-size: 0.68rem; color: var(--gold-hover); letter-spacing: 0.02em; }

/* ── GLOBAL REACH LANDING PAGE — hero visual with language badges ── */
.gr-hero-visual {
  max-width: 620px; margin-inline: auto; margin-block-end: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px; padding: 1.75rem;
}

.gr-lang-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
  margin-block-end: 1.25rem;
}

.gr-lang-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 0.4rem 0.9rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--white);
}

.gr-lang-badge-code { color: var(--gold); }

.gr-hero-whiteboard {
  background: rgba(255,255,255,0.06); border: 1px dashed rgba(255,255,255,0.28);
  border-radius: 10px; padding: 1.5rem; margin-block-end: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  color: rgba(255,255,255,0.65); font-size: 0.8rem; letter-spacing: 0.03em;
}
.gr-hero-whiteboard svg { width: 32px; height: 32px; }

.gr-hero-chat { display: flex; justify-content: center; }

.gr-early-access-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 20px; margin-block-end: 1.25rem;
}

.gr-trust-line {
  text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.55);
  margin-block-start: 1rem;
}

/* ── GLOBAL REACH — free plan card + limit note ── */
.gr-plan-card.free { border-color: var(--pillar-global); }
.gr-plan-card.free .gr-plan-name { color: var(--pillar-global); }

.gr-limit-note {
  text-align: center; font-size: 0.9rem; color: var(--text);
  max-width: 640px; margin: 2rem auto 0;
  background: var(--sky); border-radius: 8px; padding: 1rem 1.5rem;
}

/* ── GLOBAL REACH — FAQ ── */
.gr-faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 1.25rem; }

.gr-faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.5rem 1.75rem;
}

.gr-faq-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-block-end: 0.5rem; display: flex; align-items: center; gap: 0.6rem; }
.gr-faq-item h3 svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.gr-faq-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── GLOBAL REACH — email capture ── */
.gr-email-capture {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--sky); border-radius: 10px; padding: 2.5rem;
}

.gr-email-capture h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--navy); margin-block-end: 0.4rem; }
.gr-email-capture p  { font-size: 0.9rem; color: var(--muted); margin-block-end: 1.25rem; }

.gr-email-form { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.gr-email-form input {
  flex: 1 1 220px; padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: 4px;
  font-family: var(--font-sans); font-size: 0.9rem;
}
.gr-email-form button {
  background: var(--navy); color: var(--white); border: none; border-radius: 4px;
  padding: 0.8rem 1.5rem; font-weight: 600; font-size: 0.85rem; cursor: pointer;
  letter-spacing: 0.03em;
}
.gr-email-form button:hover { background: var(--navy-hover, var(--navy)); }

/* ── GLOBAL REACH — sticky mobile CTA bar ── */
.gr-sticky-cta {
  display: none;
  position: fixed; inset-inline: 0; bottom: 0; z-index: 90;
  background: var(--navy); color: var(--white);
  padding: 0.85rem 1.25rem;
  align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.gr-sticky-cta span { font-size: 0.8rem; font-weight: 600; }

.gr-sticky-cta a {
  background: var(--gold); color: var(--navy); font-weight: 700;
  font-size: 0.78rem; text-decoration: none; letter-spacing: 0.03em;
  padding: 0.6rem 1.1rem; border-radius: 4px; white-space: nowrap;
}

/* ── IT SERVICES — portfolio grid ── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 820px; margin-inline: auto;
}

.portfolio-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem;
}

.portfolio-icon {
  width: 44px; height: 44px; background: var(--sky); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-block-end: 1rem;
}
.portfolio-icon svg { color: var(--pillar-it); }

.portfolio-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-block-end: 0.5rem; }
.portfolio-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .gr-mock-zones { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .gr-teaser-inner { grid-template-columns: 1fr; text-align: center; }
  .gr-teaser .section-label, .gr-teaser .section-title, .gr-teaser .section-sub { text-align: center; }
}

@media (max-width: 640px) {
  .gr-sticky-cta { display: flex; }
  body.has-gr-sticky { padding-block-end: 64px; }
}
