/* ==========================================================================
   OMEXIS DIGITAL — styles.css
   Placeholder content (testimonials, client-logo names, work items) is
   clearly marked in the markup — swap it for real material before this
   goes live. Stats reflect real proposal facts (platforms/services/etc).
   ========================================================================== */

:root {
  --navy: #021942;
  --navy-2: #0a2a5e;
  --navy-3: #0d1f2c;
  --cyan: #009BCE;
  --cyan-light: #E0F4FB;
  --cyan-glow: #59D3F2;
  --ink: #14161A;
  --ink-soft: #5A6270;
  --bg: #ffffff;
  --bg-soft: #F4F8FB;
  --line: #E4EAF0;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px rgba(2, 25, 66, 0.10);
  --shadow-sm: 0 10px 24px rgba(2, 25, 66, 0.08);
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
em { color: var(--cyan); font-style: normal; }
.section-pad { padding: 100px 6vw; }
.section-title { max-width: 620px; margin-bottom: 20px; }
.section-title h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 10px; }
.section-intro { max-width: 560px; color: var(--ink-soft); font-size: 16px; margin-bottom: 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--cyan);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 100px; font-weight: 700; font-size: 14.5px;
  border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: #fff; box-shadow: 0 12px 28px rgba(0,155,206,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,155,206,.45); }
.btn-light { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-light:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--cyan); transform: translateY(-2px); }

/* ---------- custom cursor (desktop only) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}
.cursor-dot { width: 6px; height: 6px; background: var(--cyan); }
.cursor-ring { width: 32px; height: 32px; border: 1.5px solid rgba(0,155,206,.5); transition: transform .12s ease, opacity .2s ease; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader img { width: 96px; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader span { font-weight: 700; color: var(--navy); font-size: 14px; letter-spacing: .04em; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: .75; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 40px; }
.brand span { font-weight: 800; font-size: 15px; line-height: 1.1; color: var(--navy); letter-spacing: .02em; }
.brand small { font-weight: 600; font-size: 11px; color: var(--cyan); letter-spacing: .1em; }
.nav { display: flex; gap: 34px; font-weight: 600; font-size: 14.5px; }
.nav a:hover, .nav a.active { color: var(--cyan); }
.nav a.active { position: relative; }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--cyan);
}
.menu-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 40px; height: 40px; font-size: 18px; cursor: pointer; color: var(--navy);
}

/* ---------- social rail ---------- */
/* Fixed + vertically centered, so it always floats over whatever section is
   mid-viewport. Giving it its own background pill keeps it reading as a
   self-contained widget instead of visually merging with page content
   (its divider lines used to render as bare 1px strokes with nothing behind
   them, which could look like a stray line wherever the rail landed). */
.social-rail {
  position: fixed; left: 18px; top: 50%; transform: translateY(-50%); z-index: 400;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 18px 10px; box-shadow: var(--shadow-sm);
}
.social-rail span {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 4px;
}
.social-rail a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--navy); background: #fff;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-rail a:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); transform: translateY(-2px); }
.social-rail::before, .social-rail::after { content: ""; width: 1px; height: 30px; background: var(--line); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  background: radial-gradient(circle at 85% 10%, var(--cyan-light) 0%, transparent 45%), var(--bg-soft);
  padding-bottom: 60px;
  overflow: visible;
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 { font-size: clamp(34px, 4.4vw, 54px); margin-bottom: 20px; }
.hero-copy p { color: var(--ink-soft); font-size: 17px; max-width: 480px; margin-bottom: 30px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.trust { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--navy-2));
  border: 2.5px solid #fff; margin-left: -10px; box-shadow: var(--shadow-sm);
}
.avatars span:first-child { margin-left: 0; }
.trust p { font-size: 13.5px; color: var(--ink-soft); }
.trust b { color: var(--navy); }

/* hero visual stage */
.hero-stage { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.marble {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--cyan-light) 0%, transparent 65%);
  filter: blur(6px); z-index: 0;
}
.orbit { position: absolute; border: 1.5px dashed rgba(0,155,206,.35); border-radius: 50%; }
.orbit-one { width: 340px; height: 340px; animation: spin 30s linear infinite; }
.orbit-two { width: 420px; height: 420px; animation: spin 45s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.paper-plane {
  position: absolute; top: 6%; left: 6%; font-size: 26px; color: var(--cyan);
  transform: rotate(-35deg); animation: floaty 3.5s ease-in-out infinite;
}
.brand-cube {
  width: 190px; height: 190px; border-radius: 34px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(2,25,66,.04);
  position: relative; z-index: 2;
}
.brand-cube img { width: 92px; }
.metric-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow-sm); min-width: 130px; z-index: 3;
  animation: floaty 4s ease-in-out infinite;
}
.metric-card small { display: block; font-size: 11px; color: var(--ink-soft); margin-bottom: 4px; }
.metric-card strong { font-size: 20px; color: var(--navy); }
.card-1 { top: 2%; right: 0%; animation-delay: .2s; }
.card-2 { left: -4%; top: 30%; animation-delay: 1s; }
.card-3 { left: 2%; bottom: 10%; animation-delay: 1.6s; }
.card-4 { right: -2%; bottom: 4%; animation-delay: .6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.metric-card svg { width: 90px; height: 30px; margin-top: 4px; }
.metric-card svg path { fill: none; stroke: var(--cyan); stroke-width: 2.4; stroke-linecap: round; }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 24px; margin-top: 6px; }
.bars i { width: 6px; background: var(--cyan); border-radius: 3px; display: block; }
.bars i:nth-child(1) { height: 40%; } .bars i:nth-child(2) { height: 65%; }
.bars i:nth-child(3) { height: 50%; } .bars i:nth-child(4) { height: 90%; background: var(--navy); }
.donut {
  width: 30px; height: 30px; border-radius: 50%; margin-top: 6px;
  background: conic-gradient(var(--cyan) 0% 70%, var(--line) 70% 100%);
  position: relative;
}
.donut::after { content:""; position:absolute; inset: 5px; border-radius: 50%; background: #fff; }
.mini-avatars { display: flex; margin-top: 6px; }
.mini-avatars i {
  width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--navy-2));
  border: 2px solid #fff; margin-left: -8px; display: block;
}
.mini-avatars i:first-child { margin-left: 0; }

/* chat-card floating on hero (kept inside the hero's own box so it doesn't
   spill into whatever section follows — previously a negative bottom offset
   made it overlap the dark tagline band) */
.chat-card {
  position: absolute; right: 6vw; bottom: 28px; z-index: 5;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 18px 20px; display: flex; align-items: center; gap: 16px; max-width: 320px;
}
.chat-card b { font-size: 13.5px; color: var(--navy); }
.chat-card button {
  background: var(--navy); color: #fff; border: none; border-radius: 100px;
  padding: 10px 16px; font-size: 12.5px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background .2s ease;
}
.chat-card button:hover { background: var(--cyan); }

/* ---------- inner page header (banner) ---------- */
.page-header {
  background: radial-gradient(circle at 85% 10%, var(--cyan-light) 0%, transparent 45%), var(--bg-soft);
  padding: 160px 6vw 64px; text-align: center;
}
.page-header .eyebrow { justify-content: center; }
.page-header h1 { font-size: clamp(30px, 4.4vw, 50px); margin: 14px 0; }
.page-header p { color: var(--ink-soft); max-width: 580px; margin: 0 auto; font-size: 16px; }
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-top: 16px; }
.breadcrumb a { color: var(--cyan); font-weight: 600; }

/* ---------- detail content blocks (service pages) ---------- */
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.detail-block h3 { font-size: 19px; margin-bottom: 16px; }
.detail-block > p { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; }
.bullet-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.bullet-list.single { grid-template-columns: 1fr; }
.bullet-list li { font-size: 14.5px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pill { background: var(--cyan-light); color: var(--navy); font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 100px; }

/* ---------- insights / blog grid ---------- */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.insight-thumb {
  height: 160px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 13px; border-bottom: 1px solid var(--line);
}
.insight-card .insight-body { padding: 22px; }
.insight-tag { font-size: 11.5px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .06em; }
.insight-card h3 { font-size: 16.5px; margin: 10px 0 8px; }
.insight-card p { font-size: 14px; color: var(--ink-soft); }

/* ---------- simple legal / long-form text pages ---------- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 20px; margin: 34px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: 15px; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-updated { color: var(--ink-soft); font-size: 13px; margin-bottom: 30px; display: block; }

/* ---------- standalone forms (outside the dark .cta band, e.g. contact page) ---------- */
.detail-block form {
  display: flex; flex-direction: column; gap: 14px;
}
.detail-block form input, .detail-block form textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg-soft); color: var(--ink); font-family: inherit; font-size: 14px;
}
.detail-block form textarea { min-height: 110px; resize: vertical; }
.detail-block form button { align-self: flex-start; }

/* ---------- brand strip ---------- */
.brand-strip {
  display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap;
  padding: 70px 6vw 40px; color: var(--ink-soft);
}
.brand-strip span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.brand-strip b { font-weight: 800; color: var(--ink-soft); opacity: .55; font-size: 15px; letter-spacing: .03em; }

/* ---------- solutions / services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-grid article {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.service-grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); background: #fff; }
.service-grid i {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; background: var(--cyan-light);
  font-style: normal; font-size: 20px; margin-bottom: 18px;
}
.service-grid h3 { font-size: 17px; margin-bottom: 8px; }
.service-grid p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.service-grid a { font-weight: 700; color: var(--cyan); font-size: 14px; }

/* ---------- stats ribbon ---------- */
.stats {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  background: var(--navy); color: #fff; padding: 56px 6vw; text-align: center;
}
.stats div b { display: block; font-size: clamp(24px, 2.6vw, 32px); color: var(--cyan-glow); margin-bottom: 6px; }
.stats div span { font-size: 12.5px; color: #b7c0d1; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* ---------- process ---------- */
.process-line { display: flex; gap: 0; position: relative; }
.process-line article { flex: 1; position: relative; padding-right: 24px; }
.process-line article:not(:last-child)::after {
  content: "→"; position: absolute; right: -4px; top: 14px; color: var(--cyan); font-size: 18px; opacity: .6;
}
.process-line span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; background: var(--cyan-light); color: var(--cyan);
  font-weight: 800; font-size: 14px; margin-bottom: 16px;
}
.process-line h3 { font-size: 17px; margin-bottom: 8px; }
.process-line p { font-size: 14px; color: var(--ink-soft); }

/* ---------- work ---------- */
.work-carousel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.work-carousel article { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.mockup {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.mockup.blue { background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%); }
.mockup.light { background: linear-gradient(135deg, #eef2f6 0%, #dbe4ee 100%); }
.mockup.dashboard { background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 100%); }
.work-carousel h3 { font-size: 15.5px; padding: 16px 18px 4px; }
.work-carousel p { font-size: 12.5px; color: var(--ink-soft); padding: 0 18px 18px; }
.placeholder-note { margin-top: 24px; font-size: 12.5px; color: var(--ink-soft); font-style: italic; }

/* ---------- testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.testimonials > div { grid-column: 1 / -1; margin-bottom: 8px; }
.testimonials article {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; font-size: 15px; color: var(--ink-soft); display: flex; flex-direction: column; gap: 18px;
}
.testimonials article b { color: var(--navy); font-size: 14px; }
.testimonials article.featured { background: var(--navy); color: #fff; }
.testimonials article.featured b { color: var(--cyan-glow); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-grid article {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px;
  background: #fff; transition: transform .2s ease, box-shadow .2s ease;
}
.price-grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.price-grid h3 { font-size: 16px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 10px; }
.price-grid b { display: block; font-size: 30px; color: var(--navy); margin-bottom: 14px; }
.price-grid p { font-size: 14px; color: var(--ink-soft); }
.price-grid article.popular { background: var(--navy); border-color: var(--navy); position: relative; }
.price-grid article.popular h3, .price-grid article.popular p { color: #cfd7e6; }
.price-grid article.popular b { color: #fff; }
.price-grid article.popular::before {
  content: "Most Popular"; position: absolute; top: -13px; left: 26px;
  background: var(--cyan); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px; letter-spacing: .04em;
}

/* ---------- contact / cta ---------- */
.cta {
  background: var(--navy); color: #fff; border-radius: 28px; margin: 0 6vw 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  padding: 70px 5vw;
}
.cta .eyebrow { color: var(--cyan-glow); }
.cta h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin: 10px 0 14px; }
.cta p { color: #c6cee0; max-width: 420px; }
.cta form { display: flex; flex-direction: column; gap: 14px; }
.cta input, .cta textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: 14px;
}
.cta input::placeholder, .cta textarea::placeholder { color: #9aa3b5; }
.cta textarea { min-height: 100px; resize: vertical; }
.cta .btn-dark { background: var(--cyan); align-self: flex-start; }
.cta .btn-dark:hover { background: #fff; color: var(--navy); }

/* ---------- footer ---------- */
.footer {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding: 60px 6vw 30px; border-top: 1px solid var(--line);
}
.footer img { width: 40px; margin-bottom: 14px; }
.footer p { font-size: 13.5px; color: var(--ink-soft); max-width: 240px; margin-bottom: 16px; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 14px; }
.footer > div > a { display: block; font-size: 14px; margin-bottom: 10px; color: var(--navy); }
.footer > div > a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.footer-social a:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.copy {
  grid-column: 1 / -1; text-align: center; font-size: 13px; color: var(--ink-soft);
  padding-top: 24px; margin-top: 10px; border-top: 1px solid var(--line);
}

/* ---------- fixed action buttons ---------- */
.fixed-actions {
  position: fixed; right: 22px; bottom: 22px; z-index: 600;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.float-chat, .float-whatsapp {
  display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-radius: 100px;
  font-weight: 700; font-size: 13.5px; color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .18s ease;
}
.float-chat { background: var(--navy); }
.float-whatsapp { background: #25D366; }
.float-chat:hover, .float-whatsapp:hover { transform: translateY(-3px); }

/* ---------- chat modal ---------- */
.chat-modal {
  position: fixed; inset: 0; z-index: 700; display: none;
  align-items: center; justify-content: center;
  background: rgba(2, 25, 66, .55); backdrop-filter: blur(3px);
}
.chat-modal.active { display: flex; }
.chat-modal > div {
  background: #fff; border-radius: var(--radius); padding: 34px 30px; max-width: 360px; width: 90%;
  position: relative; box-shadow: var(--shadow); text-align: center;
}
.chat-modal h3 { font-size: 19px; margin-bottom: 8px; }
.chat-modal p { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.chat-modal .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
#closeChat {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 20px; cursor: pointer; color: var(--ink-soft);
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .work-carousel { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 20px; }
  .hero-stage { height: 380px; margin-top: 40px; }
  .chat-card { position: static; margin: 30px 6vw 0; max-width: none; }
  .social-rail { display: none; }
  .cta { grid-template-columns: 1fr; margin: 0 24px 70px; padding: 50px 28px; }
  .footer { grid-template-columns: 1fr 1fr; }
  .detail-columns { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header { padding: 140px 24px 56px; }
}
@media (max-width: 720px) {
  .section-pad { padding: 70px 24px; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .site-header { padding: 14px 20px; }
  .site-header .btn-primary span { display: none; }
  .service-grid, .work-carousel, .testimonials, .price-grid, .insight-grid, .bullet-list { grid-template-columns: 1fr; }
  .testimonials > div { grid-column: 1; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
  .process-line { flex-direction: column; gap: 32px; }
  .process-line article::after { display: none; }
  .footer { grid-template-columns: 1fr; padding: 50px 24px 24px; }
  .brand-strip { padding: 50px 24px 30px; gap: 26px; }
  .fixed-actions { right: 14px; bottom: 14px; }
  .float-chat span, .float-whatsapp span { display: none; }
}

/* nav open state for mobile (JS toggles .nav-open on body) */
.nav-open .nav {
  display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0;
  background: #fff; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm); z-index: 490;
}

/* ==========================================================================
   ANIMATIONS — scroll progress, marquee, count-up, stagger, hover flair
   ========================================================================== */

/* ---------- scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-glow));
  z-index: 9998; transition: width .12s ease-out;
}

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 600;
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff;
  border: none; font-size: 18px; cursor: pointer; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease, visibility .3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--cyan); transform: translateY(-3px); }
@media (max-width: 720px) { .back-to-top { bottom: 78px; right: 14px; width: 40px; height: 40px; } }

/* ---------- marquee brand strip ---------- */
.brand-strip { overflow: hidden; }
.marquee-label { display: block; text-align: center; margin-bottom: 22px; }
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 60px; align-items: center; width: max-content; animation: marquee 18s linear infinite; }
.brand-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- gradient shimmer accent text ---------- */
em {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--navy-2) 50%, var(--cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ---------- button pulse glow ---------- */
.btn-primary { position: relative; }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: 100px;
  animation: btnPulse 2.6s ease-out infinite; pointer-events: none;
}
@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,155,206,.45); }
  70% { box-shadow: 0 0 0 14px rgba(0,155,206,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,155,206,0); }
}

/* ---------- nav underline slide ---------- */
.nav a { position: relative; }
.nav a::before {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--cyan); transition: right .25s ease;
}
.nav a:hover::before { right: 0; }

/* ---------- section title underline draw-in ---------- */
.section-title { position: relative; }
.section-title::after {
  content: ""; display: block; width: 0; height: 3px; background: var(--cyan);
  margin-top: 16px; transition: width .8s cubic-bezier(.2,.8,.2,1) .15s;
}
.reveal.in-view .section-title::after { width: 64px; }

/* ---------- service icon hover wiggle ---------- */
.service-grid i { transition: transform .35s cubic-bezier(.2,.8,.2,1); display: inline-flex; }
.service-grid article:hover i { transform: scale(1.15) rotate(-8deg); }
.service-grid article { transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; }
.service-grid article:hover { border-color: var(--cyan); }

/* ---------- popular / featured card glow ---------- */
.price-grid article.popular,
.testimonials article.featured {
  animation: cardGlow 3.2s ease-in-out infinite;
}
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 20px 45px rgba(0,155,206,.15); }
  50% { box-shadow: 0 20px 55px rgba(0,155,206,.38); }
}

/* ---------- floating blobs on page headers ---------- */
.page-header, .hero { position: relative; overflow: hidden; }
.page-header::before {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-light), transparent 70%);
  top: -90px; right: -60px; z-index: 0; animation: blobDrift 9s ease-in-out infinite;
}
.page-header::after {
  content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-light), transparent 70%);
  bottom: -70px; left: -40px; z-index: 0; animation: blobDrift 11s ease-in-out infinite reverse;
}
.page-header > * { position: relative; z-index: 1; }
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-22px, 18px); }
}

/* ---------- metric-card entrance stagger (hero) ---------- */
.metric-card { animation: floaty 4s ease-in-out infinite, cardIn .6s ease backwards; }
.card-1 { animation-delay: .2s, .15s; }
.card-2 { animation-delay: 1s, .3s; }
.card-3 { animation-delay: 1.6s, .45s; }
.card-4 { animation-delay: .6s, .6s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(16px) scale(.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- grid item entrance + stagger (tied to parent .reveal.in-view) ---------- */
.service-grid article, .price-grid article, .work-carousel article,
.insight-grid article, .testimonials article, .process-line article {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease;
}
.reveal.in-view .service-grid article, .reveal.in-view .price-grid article,
.reveal.in-view .work-carousel article, .reveal.in-view .insight-grid article,
.reveal.in-view .testimonials article, .reveal.in-view .process-line article {
  opacity: 1; transform: translateY(0);
}
.service-grid article:nth-child(1), .price-grid article:nth-child(1), .work-carousel article:nth-child(1), .insight-grid article:nth-child(1), .testimonials article:nth-child(1), .process-line article:nth-child(1) { transition-delay: 0.07s; }
.service-grid article:nth-child(2), .price-grid article:nth-child(2), .work-carousel article:nth-child(2), .insight-grid article:nth-child(2), .testimonials article:nth-child(2), .process-line article:nth-child(2) { transition-delay: 0.14s; }
.service-grid article:nth-child(3), .price-grid article:nth-child(3), .work-carousel article:nth-child(3), .insight-grid article:nth-child(3), .testimonials article:nth-child(3), .process-line article:nth-child(3) { transition-delay: 0.21s; }
.service-grid article:nth-child(4), .price-grid article:nth-child(4), .work-carousel article:nth-child(4), .insight-grid article:nth-child(4), .testimonials article:nth-child(4), .process-line article:nth-child(4) { transition-delay: 0.28s; }
.service-grid article:nth-child(5), .price-grid article:nth-child(5), .work-carousel article:nth-child(5), .insight-grid article:nth-child(5), .testimonials article:nth-child(5), .process-line article:nth-child(5) { transition-delay: 0.35s; }
.service-grid article:nth-child(6), .price-grid article:nth-child(6), .work-carousel article:nth-child(6), .insight-grid article:nth-child(6), .testimonials article:nth-child(6), .process-line article:nth-child(6) { transition-delay: 0.42s; }
.service-grid article:nth-child(7), .price-grid article:nth-child(7), .work-carousel article:nth-child(7), .insight-grid article:nth-child(7), .testimonials article:nth-child(7), .process-line article:nth-child(7) { transition-delay: 0.49s; }
.service-grid article:nth-child(8), .price-grid article:nth-child(8), .work-carousel article:nth-child(8), .insight-grid article:nth-child(8), .testimonials article:nth-child(8), .process-line article:nth-child(8) { transition-delay: 0.56s; }

/* ---------- work mockup shine sweep ---------- */
.mockup { position: relative; overflow: hidden; }
.mockup::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .7s ease;
}
.work-carousel article:hover .mockup::after { left: 130%; }

/* ---------- respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   MORE ANIMATIONS — tagline marquee, FAQ accordion, word reveal, magnetic
   buttons, image zoom, idle float, parallax cards
   ========================================================================== */

/* ---------- tagline marquee band ---------- */
.tagline-band {
  background: var(--navy); overflow: hidden; padding: 18px 0;
}
.tagline-track {
  display: flex; gap: 40px; align-items: center; width: max-content;
  animation: marquee 26s linear infinite;
}
.tagline-band:hover .tagline-track { animation-play-state: paused; }
.tagline-track span {
  color: #fff; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 18px;
  text-transform: uppercase; letter-spacing: .02em; opacity: .9; white-space: nowrap;
}
.tagline-track span em {
  background: linear-gradient(90deg, var(--cyan-glow), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: normal; animation: none;
}
.tagline-track .dot { color: var(--cyan-glow); opacity: .7; }

/* ---------- reveal direction variants ---------- */
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* ---------- word-by-word heading reveal ---------- */
.word-reveal { display: inline-block; overflow: hidden; vertical-align: top; }
.word-reveal span, .word-reveal em {
  display: inline-block; transform: translateY(110%); opacity: 0;
  transition: transform .6s cubic-bezier(.2,.85,.2,1), opacity .6s ease;
}
.word-reveal.in-view span, .word-reveal.in-view em { transform: translateY(0); opacity: 1; }

/* ---------- magnetic buttons ---------- */
.btn-primary, .btn-dark, .btn-light {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* ---------- idle floating brand cube ---------- */
.brand-cube { animation: cubeFloat 5s ease-in-out infinite; }
@keyframes cubeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

/* ---------- image / card zoom on hover ---------- */
.work-carousel article { overflow: hidden; }
.mockup { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.work-carousel article:hover .mockup { transform: scale(1.08); }
.insight-thumb { transition: transform .5s cubic-bezier(.2,.8,.2,1), background .3s ease; overflow: hidden; }
.insight-card:hover .insight-thumb { transform: scale(1.06); background: var(--cyan-light); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 22px 0; cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; font-size: 16px; color: var(--navy);
}
.faq-q .faq-num { color: var(--cyan); font-weight: 800; margin-right: 12px; font-size: 14px; }
.faq-chevron { color: var(--cyan); font-size: 18px; transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s ease, opacity .3s ease, margin-top .4s ease;
  color: var(--ink-soft); font-size: 14.5px; margin-top: 0;
}
.faq-item.open .faq-a { max-height: 240px; opacity: 1; margin-top: 14px; }

/* ---------- hero-stage parallax cards (JS-driven transform, CSS eases it) ---------- */
.metric-card { transition: transform .25s ease-out, box-shadow .25s ease; }
.metric-card:hover { box-shadow: var(--shadow); }
.metric-card.no-float { animation: none !important; }


/* ---------- WordPress + Elementor compatibility ---------- */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.nav ul, .nav .omexis-menu { display: flex; gap: 34px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav li { margin: 0; padding: 0; }
.nav li.current-menu-item > a,
.nav li.current_page_item > a,
.nav li.current-menu-ancestor > a,
.nav a.active { color: var(--cyan); position: relative; }
.nav li.current-menu-item > a::after,
.nav li.current_page_item > a::after,
.nav li.current-menu-ancestor > a::after,
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--cyan); }
.omexis-main { min-height: 45vh; }
.omexis-main > .elementor { width: 100%; }
.elementor-editor-active .loader,
.elementor-editor-active .cursor-dot,
.elementor-editor-active .cursor-ring { display: none !important; }
.elementor-editor-active .site-header { position: relative; }
.wp-caption, .wp-caption-text, .sticky, .gallery-caption, .bypostauthor { max-width: 100%; }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.screen-reader-text { border:0; clip:rect(1px,1px,1px,1px); clip-path:inset(50%); height:1px; margin:-1px; overflow:hidden; padding:0; position:absolute; width:1px; word-wrap:normal!important; }
