/* ============================================================
   FeaturesPoint — styles.css
   Single stylesheet for all 7 pages.

   QUICK REFERENCE — sections in this file:
     GLOBAL — Variables, reset, nav, buttons, cards, footer
     INDEX — Hero, stats, tech strip, service grid, agent split
     AI-ML — Page hero, use-case grid, process steps
     AGENTIC — Pipeline diagram, capability cards, tech pills
     DATA — Stack diagram, metrics row
     SERVICES — Large service blocks, mini-card grid
     ABOUT — Story split, values, team cards
     CONTACT — Two-column layout, form styles

   TO RETHEME: edit the :root variables at the very top.
   ============================================================ */


/* ============================================================
   GLOBAL — Variables, reset, nav, buttons, cards, footer
   ============================================================ */

/* ==========================================================================
   FeaturesPoint — Main Stylesheet
   ==========================================================================

   COLOR VARIABLES — edit here to retheme the entire site
   ======================================================= */
:root {
  /* Backgrounds */
  --bg:          #ffffff;
  --bg2:         #f5f5f7;

  /* Borders */
  --border:      rgba(0, 0, 0, 0.08);
  --border-s:    rgba(0, 0, 0, 0.13);

  /* Brand accent (blue) */
  --accent:      #0071e3;
  --accent-h:    #0077ed;        /* hover state */
  --accent-l:    rgba(0, 113, 227, 0.08);  /* light tint */

  /* Logo colors */
  --logo-features: #ffffff;     /* "Features" in nav */
  --logo-point:    #3b9eff;     /* "Point" everywhere */
  --logo-features-footer: #1d1d1f; /* "Features" in footer */

  /* Nav */
  --nav-bg:      rgba(12, 12, 18, 0.97);
  --nav-border:  rgba(255, 255, 255, 0.07);
  --nav-link:    rgba(255, 255, 255, 0.58);
  --nav-link-h:  #ffffff;
  --nav-cta:     #3b9eff;

  /* Mobile menu */
  --mm-bg:       #0a0a12;
  --mm-link:     rgba(255, 255, 255, 0.72);
  --mm-border:   rgba(255, 255, 255, 0.07);

  /* Typography */
  --text:        #1d1d1f;
  --muted:       #6e6e73;
  --m2:          #86868b;

  /* CTA band */
  --cta-bg:      #1d1d1f;

  /* Service tag colors */
  --tag-ai-bg:   #dbeafe;  --tag-ai-fg:   #1d4ed8;
  --tag-ag-bg:   #dcfce7;  --tag-ag-fg:   #166534;
  --tag-dt-bg:   #fff7ed;  --tag-dt-fg:   #9a3412;
  --tag-cl-bg:   #f3e8ff;  --tag-cl-fg:   #6b21a8;
  --tag-it-bg:   #e0f2fe;  --tag-it-fg:   #075985;
  --tag-st-bg:   #fef9c3;  --tag-st-fg:   #854d0e;
  --tag-ml-bg:   #dbeafe;  --tag-ml-fg:   #1e3a8a;
  --tag-nlp-bg:  #f0fdf4;  --tag-nlp-fg:  #14532d;
  --tag-cv-bg:   #fdf4ff;  --tag-cv-fg:   #701a75;
  --tag-gai-bg:  #fff7ed;  --tag-gai-fg:  #7c2d12;
  --tag-rec-bg:  #ecfdf5;  --tag-rec-fg:  #065f46;
  --tag-ops-bg:  #f0f9ff;  --tag-ops-fg:  #0c4a6e;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 5%; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--nav-border);
}

/* Logo */
.logo {
  display: inline-flex; align-items: center; gap: 2px;
  text-decoration: none; color: #fff;
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.4px;
  white-space: nowrap;
}
.lw   { display: inline; letter-spacing: -0.4px; }
.lf   { color: var(--logo-features); }
.lp   { color: var(--logo-point); }

/* Footer logo overrides */
.fb .logo      { color: var(--text) !important; font-size: 1rem; }
.fb .logo .lf  { color: var(--logo-features-footer) !important; }
.fb .logo .lp  { color: var(--logo-point) !important; }

/* Desktop nav links */
.nl { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nl a {
  color: var(--nav-link); text-decoration: none;
  font-size: 0.83rem; font-weight: 400; transition: color 0.15s;
}
.nl a:hover, .nl a.active { color: var(--nav-link-h); }
.nc { color: var(--nav-cta) !important; font-weight: 600 !important; }


/* ==========================================================================
   HAMBURGER BUTTON
   ========================================================================== */
.hb {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px;
  background: none; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.hb span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.22s ease;
  transform-origin: center; pointer-events: none;
}
.hb.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hb.open span:nth-child(2) { opacity: 0; }
.hb.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */
.mm {
  display: block;
  position: fixed; top: 62px; left: 0; right: 0; bottom: 0;
  background: var(--mm-bg);
  z-index: 490;
  padding: 0 6%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mm.open {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.mm ul { list-style: none; border-top: 1px solid rgba(255,255,255,0.09); margin-top: 1.5rem; }
.mm li { border-bottom: 1px solid var(--mm-border); }
.mm a {
  display: block; padding: 1.1rem 0;
  color: var(--mm-link); text-decoration: none;
  font-size: 1.12rem; font-weight: 500;
  transition: color 0.15s;
}
.mm a:hover, .mm a:active { color: #fff; }
.mc { color: var(--nav-cta) !important; font-weight: 700 !important; }

/* Responsive nav */
@media (min-width: 769px) {
  .hb { display: none !important; }
  .mm { display: none !important; }
}
@media (max-width: 768px) {
  .nl { display: none !important; }
  .hb { display: flex !important; }
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
section { padding: 50px 5%; }
.ey {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.6rem;
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.03; margin-bottom: 1.2rem;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 0.75rem;
}
.blue  { color: var(--accent); }
.sl    { font-size: 1.05rem; color: var(--muted); max-width: 540px; line-height: 1.65; margin-bottom: 3rem; }


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  background: var(--accent); color: #fff;
  padding: 0.72rem 1.5rem; border-radius: 980px;
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn:hover   { background: var(--accent-h); transform: scale(1.02); }
.btn-g       { background: var(--bg2); color: var(--text) !important; border: 1px solid var(--border-s); }
.btn-g:hover { background: #e8e8e8; }
.btn-w       { background: #fff; color: var(--text) !important; }
.btn-w:hover { background: #f0f0f0; }


/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */
.cg {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.cc { background: #fff; padding: 2rem; transition: background 0.2s; }
.cc:hover { background: var(--bg2); }
.cc h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.cc p  { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

/* Service / category tags */
.si-tag {
  display: inline-block; padding: 3px 9px; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.9rem;
}
.t-ai  { background: var(--tag-ai-bg);  color: var(--tag-ai-fg); }
.t-ag  { background: var(--tag-ag-bg);  color: var(--tag-ag-fg); }
.t-dt  { background: var(--tag-dt-bg);  color: var(--tag-dt-fg); }
.t-cl  { background: var(--tag-cl-bg);  color: var(--tag-cl-fg); }
.t-it  { background: var(--tag-it-bg);  color: var(--tag-it-fg); }
.t-st  { background: var(--tag-st-bg);  color: var(--tag-st-fg); }
.t-ml  { background: var(--tag-ml-bg);  color: var(--tag-ml-fg); }
.t-nlp { background: var(--tag-nlp-bg); color: var(--tag-nlp-fg); }
.t-cv  { background: var(--tag-cv-bg);  color: var(--tag-cv-fg); }
.t-gai { background: var(--tag-gai-bg); color: var(--tag-gai-fg); }
.t-rec { background: var(--tag-rec-bg); color: var(--tag-rec-fg); }
.t-ops { background: var(--tag-ops-bg); color: var(--tag-ops-fg); }


/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-wrap  { padding: 0 5% 7rem; }
.cta-band  { background: var(--cta-bg); border-radius: 24px; padding: 5rem 3rem; text-align: center; }
.cta-band .ey { color: rgba(255,255,255,0.4); }
.cta-band h2  { color: #fff; margin-bottom: 0.75rem; }
.cta-band p   { color: rgba(255,255,255,0.5); margin-bottom: 2rem; }


/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 3.5rem 5% 2rem; }
.fg    { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.fb p  { margin-top: 0.5rem; font-size: 0.82rem; color: var(--m2); max-width: 250px; line-height: 1.6; }
.fc h4 {
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text); margin-bottom: 0.9rem;
}
.fc a  { display: block; color: var(--m2); text-decoration: none; padding: 0.22rem 0; font-size: 0.82rem; transition: color 0.15s; }
.fc a:hover { color: var(--accent); }
.fb2 {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.fb2 p { font-size: 0.76rem; color: var(--m2); }

/* Footer responsive */
@media (max-width: 900px) { .fg { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .fg { grid-template-columns: 1fr; } }


/* ==========================================================================
   SHARED INNER-CARD ELEMENTS (agent workflow, etc.)
   ========================================================================== */
.av {
  background: #fff; border-radius: 16px; border: 1px solid var(--border);
  padding: 1.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.av-lbl {
  font-size: 0.67rem; font-weight: 600; color: var(--m2);
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 1rem;
}
.an { background: var(--bg2); border-radius: 9px; padding: 0.85rem 1rem; display: flex; align-items: center; gap: 10px; }
.an.out { background: #eaf4ff; }
.ac { height: 14px; width: 2px; margin-left: 17px; background: linear-gradient(180deg, var(--accent), #56aaff); opacity: 0.35; }
.nd   { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: var(--accent); }
.nd.g { background: #34c759; }
.nm   { font-size: 0.67rem; color: var(--m2); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1px; }
.nt   { font-size: 0.82rem; font-weight: 500; color: var(--text); }

/* Card responsive */
@media (max-width: 900px) { .cg { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .cg { grid-template-columns: 1fr; } }


/* ============================================================
   INDEX — Hero, stats, tech strip, service grid, agent split
   ============================================================ */

/* ==========================================================================
   index.css — Homepage-specific styles
   ========================================================================== */

/* Hero */
.hero {
  padding: 130px 5% 96px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at 50% 30%, rgba(0,113,227,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-l); border: 1px solid rgba(0,113,227,0.15);
  color: var(--accent); padding: 4px 14px; border-radius: 980px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 2rem; position: relative; z-index: 1;
}
.eyebrow::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1 } 50% { opacity: 0.3 } }
.hero h1, .hero .lead, .hero .acts { position: relative; z-index: 1; }
.hero .lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--muted);
  max-width: 540px; line-height: 1.65; margin-bottom: 2.5rem;
}
.acts { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Stats band */
.stats-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 5%;
}
.si  { display: flex; justify-content: center; max-width: 860px; margin: 0 auto; }
.st  { flex: 1; text-align: center; padding: 0 2rem; border-right: 1px solid var(--border); }
.st:last-child { border-right: none; }
.sn  { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.sn span { color: var(--accent); }
.slb { font-size: 0.78rem; color: var(--m2); margin-top: 5px; }

/* Tech strip */
.tech-strip {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%; display: flex; align-items: center; gap: 2.5rem; overflow-x: auto;
}
.tl  { font-size: 0.68rem; color: var(--m2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; flex-shrink: 0; }
.ti  { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.ti span { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* Service grid */
.sg-wrap { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.sg      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.sc      { background: #fff; padding: 2.5rem 2rem; transition: background 0.2s; }
.sc:hover { background: var(--bg2); }
.sc h3   { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.sc p    { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }
.sl2 {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 1rem; font-size: 0.83rem;
  color: var(--accent); text-decoration: none; font-weight: 500; transition: gap 0.15s;
}
.sl2:hover { gap: 8px; }

/* Agentic feature split */
.fsplit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; background: var(--bg2); border-radius: 24px; padding: 4rem;
}
.fsplit .body { color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; font-size: 0.95rem; }
.fl      { list-style: none; }
.fl li   { display: flex; gap: 10px; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: #3d3d3f; }
.fl .ck  { color: var(--accent); flex-shrink: 0; font-weight: 700; }

/* Responsive */
@media (max-width: 900px) {
  .sg { grid-template-columns: 1fr 1fr; }
  .fsplit { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
}
@media (max-width: 640px) {
  .sg { grid-template-columns: 1fr; }
  .si { flex-wrap: wrap; }
  .st { min-width: 45%; padding: 1rem; }
}


/* ============================================================
   AI-ML — Page hero, use-case grid, process steps
   ============================================================ */

/* ==========================================================================
   ai-ml.css — AI & Machine Learning page styles
   ========================================================================== */
.ph { padding: 120px 5% 80px; position: relative; overflow: hidden; }
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 40%, rgba(0,113,227,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; max-width: 700px; }
.ph p { font-size: 1.1rem; color: var(--muted); line-height: 1.65; max-width: 580px; margin-bottom: 2rem; }

.ug  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.uc  { background: var(--bg2); border-radius: 16px; padding: 2rem; }
.uc h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.uc p  { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.ps     { display: flex; flex-direction: column; }
.pi     { display: flex; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.pn     { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; color: rgba(0,113,227,0.12); line-height: 1; flex-shrink: 0; width: 56px; }
.pb h3  { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.pb p   { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

@media (max-width: 640px) { .ug { grid-template-columns: 1fr; } }


/* ============================================================
   AGENTIC — Pipeline diagram, capability cards, tech pills
   ============================================================ */

/* ==========================================================================
   agentic.css — Agentic AI Systems page styles
   ========================================================================== */
.ph { padding: 120px 5% 80px; position: relative; overflow: hidden; }
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 30%, rgba(0,113,227,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; max-width: 700px; }
.ph p { font-size: 1.1rem; color: var(--muted); line-height: 1.65; max-width: 580px; margin-bottom: 2rem; }

/* Pipeline diagram */
.pipe {
  display: flex; align-items: center; gap: 0;
  background: var(--bg2); border-radius: 20px; padding: 2.5rem; overflow-x: auto;
}
.pnd {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 1rem 0.9rem; text-align: center; flex-shrink: 0; min-width: 100px;
  transition: border-color 0.2s;
}
.pnd:hover    { border-color: rgba(0,113,227,0.25); }
.pnd.out      { background: #eaf4ff; border-color: rgba(0,113,227,0.2); }
.pni { font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--m2); margin-bottom: 3px; }
.pnn { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.parr { color: rgba(0,113,227,0.4); font-size: 1.2rem; padding: 0 0.75rem; flex-shrink: 0; }

/* Capability cards */
.fg2  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fc2  { background: var(--bg2); border-radius: 16px; padding: 2rem; transition: background 0.2s; }
.fc2:hover { background: #ebebeb; }
.fc2 h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.fc2 p  { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

/* Use case lists */
.ug2  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.uc2  { background: var(--bg2); border-radius: 16px; padding: 2rem; }
.uc2 h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.uc2 ul { list-style: none; }
.uc2 li {
  color: var(--muted); font-size: 0.87rem;
  padding: 0.3rem 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 8px;
}
.uc2 li::before { content: ">"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Tech stack pills */
.tp { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.tp span {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 0.35rem 0.9rem; border-radius: 980px;
  font-size: 0.8rem; color: var(--muted); font-weight: 500; transition: all 0.15s;
}
.tp span:hover { border-color: rgba(0,113,227,0.3); color: var(--accent); }

@media (max-width: 900px) { .fg2 { grid-template-columns: 1fr 1fr; } .ug2 { grid-template-columns: 1fr; } }
@media (max-width: 640px)  { .fg2 { grid-template-columns: 1fr; } }


/* ============================================================
   DATA — Stack diagram, metrics row
   ============================================================ */

/* ==========================================================================
   data.css — Data Engineering & Analytics page styles
   ========================================================================== */
.ph { padding: 120px 5% 80px; position: relative; overflow: hidden; }
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 20%, rgba(0,113,227,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; max-width: 700px; }
.ph p { font-size: 1.1rem; color: var(--muted); line-height: 1.65; max-width: 580px; margin-bottom: 2rem; }

/* Data stack diagram */
.stack  { background: var(--bg2); border-radius: 20px; padding: 3rem; }
.layer  { display: flex; align-items: center; gap: 1.5rem; padding: 1rem 1.25rem; border-radius: 12px; margin-bottom: 10px; }
.l1     { background: rgba(0,113,227,0.07);  border: 1px solid rgba(0,113,227,0.15); }
.l2     { background: rgba(88,86,214,0.06);  border: 1px solid rgba(88,86,214,0.15); }
.l3     { background: rgba(0,113,227,0.07);  border: 1px solid rgba(0,113,227,0.15); }
.l4     { background: rgba(52,199,89,0.06);  border: 1px solid rgba(52,199,89,0.2); }
.ll     { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; width: 90px; flex-shrink: 0; }
.l1 .ll, .l3 .ll { color: var(--accent); }
.l2 .ll { color: #5856d6; }
.l4 .ll { color: #34c759; }
.ltags  { display: flex; gap: 8px; flex-wrap: wrap; }
.ltag   {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.08);
  padding: 3px 10px; border-radius: 980px; font-size: 0.77rem; color: var(--muted); font-weight: 500;
}

/* Metrics row */
.mrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.mc   { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; text-align: center; }
.mn   { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--accent); }
.ml   { font-size: 0.78rem; color: var(--m2); margin-top: 4px; }

@media (max-width: 900px) { .mrow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .layer { flex-direction: column; align-items: flex-start; } .ll { width: auto; } }


/* ============================================================
   SERVICES — Large service blocks, mini-card grid
   ============================================================ */

/* ==========================================================================
   services.css — All Services page styles
   ========================================================================== */
.ph { padding: 120px 5% 70px; }
.ph h1 { max-width: 700px; }
.ph p  { font-size: 1.1rem; color: var(--muted); line-height: 1.65; max-width: 560px; margin-top: 1rem; }

/* Large service blocks */
.big-svc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  padding: 3rem; background: var(--bg2); border-radius: 20px;
  margin-bottom: 1.5rem; transition: background 0.2s; align-items: start;
}
.big-svc:hover { background: #ebebeb; }
.big-svc h3    { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.6rem; }
.big-svc .desc { color: var(--muted); line-height: 1.65; margin-bottom: 1.2rem; font-size: 0.92rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.87rem; color: var(--accent); text-decoration: none;
  font-weight: 500; transition: gap 0.15s;
}
.svc-link:hover { gap: 8px; }
.big-svc ul     { list-style: none; }
.big-svc li {
  font-size: 0.88rem; color: var(--muted); padding: 0.4rem 0;
  border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start;
}
.big-svc li::before { content: "+"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Mini card grid */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mini-card { background: var(--bg2); border-radius: 16px; padding: 2rem; transition: background 0.2s; }
.mini-card:hover { background: #ebebeb; }
.mini-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.mini-card p  { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

@media (max-width: 900px) { .big-svc { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; } .mini-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .mini-grid { grid-template-columns: 1fr; } }


/* ============================================================
   ABOUT — Story split, values, team cards
   ============================================================ */

/* ==========================================================================
   about.css — About page styles
   ========================================================================== */
.ph { padding: 120px 5% 80px; }
.ph h1 { max-width: 800px; }
.ph p  { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 600px; margin-top: 1rem; }

/* Stats band */
.stats-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 5%;
}
.si  { display: flex; justify-content: center; max-width: 860px; margin: 0 auto; }
.st  { flex: 1; text-align: center; padding: 0 2rem; border-right: 1px solid var(--border); }
.st:last-child { border-right: none; }
.sn  { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.sn span { color: var(--accent); }
.slb { font-size: 0.78rem; color: var(--m2); margin-top: 5px; }

/* Story split */
.story-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.story-text p { color: var(--muted); line-height: 1.7; font-size: 0.95rem; margin-bottom: 1rem; }

/* Values */
.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.vc   { background: var(--bg2); border-radius: 16px; padding: 2rem; transition: background 0.2s; }
.vc:hover { background: #ebebeb; }
.vc h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.vc p  { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

/* Team cards */
.team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tc  { background: var(--bg2); border-radius: 16px; padding: 2rem; transition: background 0.2s; }
.tc:hover { background: #ebebeb; }
.tc h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.tc p  { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

@media (max-width: 900px) { .story-split { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 640px)  { .si { flex-wrap: wrap; } .st { min-width: 45%; padding: 1rem; } .vals { grid-template-columns: 1fr; } .team-cards { grid-template-columns: 1fr; } }


/* ============================================================
   CONTACT — Two-column layout, form styles
   ============================================================ */

/* ==========================================================================
   contact.css — Contact page styles
   ========================================================================== */
.contact-wrap {
  min-height: calc(100vh - 62px);
  padding: 100px 5% 7rem;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start;
}

/* Left column — contact info */
.ci { position: sticky; top: 80px; }
.ci .ey { margin-bottom: 0.6rem; }
.ci h1  { margin-bottom: 1.2rem; }
.ci > p { font-size: 1rem; color: var(--muted); line-height: 1.65; margin-bottom: 2.5rem; max-width: 380px; }

.cm      { display: flex; flex-direction: column; gap: 0.75rem; }
.cm-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.1rem; background: var(--bg2); border-radius: 12px; transition: background 0.2s;
}
.cm-item:hover { background: #ebebeb; }
.cm-lbl  { font-size: 0.68rem; color: var(--m2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1px; }
.cm-val  { font-size: 0.87rem; font-weight: 500; }
.cm-val a { color: var(--text); text-decoration: none; }
.cm-val a:hover { color: var(--accent); }
.cm-dot  {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.d-email { background: var(--tag-ai-bg);  color: var(--tag-ai-fg); }
.d-loc   { background: var(--tag-ag-bg);  color: var(--tag-ag-fg); }
.d-time  { background: var(--tag-dt-bg);  color: var(--tag-dt-fg); }
.d-web   { background: var(--tag-cl-bg);  color: var(--tag-cl-fg); }

/* Right column — form */
.cf { background: var(--bg2); border-radius: 20px; padding: 2.5rem; }
.cf h2  { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.cf > p { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg2  { margin-bottom: 1.1rem; }
.fg2 label {
  display: block; font-size: 0.72rem; font-weight: 600; color: var(--muted);
  margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.fg2 input,
.fg2 select,
.fg2 textarea {
  width: 100%; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 0.9rem; color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.fg2 input:focus,
.fg2 select:focus,
.fg2 textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-l);
}
.fg2 textarea { height: 120px; resize: vertical; }

.sub {
  width: 100%; background: var(--accent); color: #fff;
  padding: 0.85rem 1.5rem; border-radius: 980px; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 600; font-size: 0.95rem; transition: all 0.2s; margin-top: 0.5rem;
}
.sub:hover { background: var(--accent-h); transform: scale(1.01); }

/* Success state */
.success { display: none; text-align: center; padding: 3rem 2rem; }
.success h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.success p  { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 3rem; } .ci { position: static; } .frow { grid-template-columns: 1fr; } }
