/* =========================================================================
   Mobisoft Labs — style.css  (global design system)
   Custom-coded. No frameworks.
   ========================================================================= */

/* ----- Design tokens ----- */
:root {
  --bg:            #F7F6F2;
  --accent:        #FF4D6D;
  --accent-dark:   #E23357;
  --accent-soft:   rgba(255, 77, 109, 0.10);
  --text:          #202124;
  --text-2:        #6B7280;
  --white:         #FFFFFF;
  --border:        #E8E8E8;
  --success:       #22C55E;

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(32, 33, 36, 0.05);
  --shadow:    0 10px 30px rgba(32, 33, 36, 0.08);
  --shadow-lg: 0 24px 60px rgba(32, 33, 36, 0.12);
  --shadow-accent: 0 12px 30px rgba(255, 77, 109, 0.30);

  --container: 1200px;
  --gap: 24px;

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

/* ----- Typography ----- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { color: var(--text-2); }
strong { color: var(--text); }
.text-accent { color: var(--accent); }

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.flow > * + * { margin-top: 1rem; }

/* ----- Section heading block ----- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,77,109,0.38); }
.btn-ghost { background: var(--white); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-light { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,0.28); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ----- Glass card ----- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255,77,109,0.35); }
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ----- Icon badge ----- */
.icon-badge {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 22px;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.icon-badge svg { width: 30px; height: 30px; }
.card:hover .icon-badge { background: var(--accent); color: #fff; transform: rotate(-6deg) scale(1.05); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(247, 246, 242, 0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 6px 24px rgba(32,33,36,0.06);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.28rem; letter-spacing: -0.02em; }
.brand > span { white-space: nowrap; line-height: 1.15; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff8aa1); color: #fff;
  font-weight: 800; box-shadow: var(--shadow-accent); flex: none;
}
.brand small { display: block; font-size: 0.68rem; font-weight: 600; color: var(--text-2); letter-spacing: 0.04em; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  padding: 9px 10px; border-radius: 999px; font-weight: 600; font-size: 0.94rem; color: var(--text);
  position: relative; transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav .btn-desktop { padding: 11px 18px; font-size: 0.9rem; }
.nav-menu a:hover { color: var(--accent); }
.nav-menu a.is-active { color: var(--accent); background: var(--accent-soft); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-mobile-cta { display: none; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--white); cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after  { transform: translate(-50%, 6px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .nav-toggle span::after  { transform: translate(-50%, 0) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(32,33,36,0.45); opacity: 0; visibility: hidden;
  transition: opacity 0.3s; z-index: 98;
}
body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; padding: calc(var(--header-h) + 60px) 0 90px; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 0; pointer-events: none;
}
.hero-blob.b1 { width: 480px; height: 480px; background: rgba(255,77,109,0.35); top: -120px; right: -80px; }
.hero-blob.b2 { width: 380px; height: 380px; background: rgba(99,102,241,0.22); bottom: -140px; left: -100px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero p.lead { font-size: 1.2rem; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; color: var(--text-2); font-size: 0.9rem; }
.hero-trust .stars { color: #F59E0B; letter-spacing: 2px; }

.hero-visual { position: relative; }
.hero-card {
  border-radius: var(--radius-xl); padding: 30px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
}
.hero-window { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #fff; }
.hero-window .bar { display: flex; gap: 7px; padding: 12px 14px; background: #fafafa; border-bottom: 1px solid var(--border); }
.hero-window .bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.hero-window .bar i:nth-child(1){ background:#ff5f57 }
.hero-window .bar i:nth-child(2){ background:#febc2e }
.hero-window .bar i:nth-child(3){ background:#28c840 }
.hero-window .body { padding: 22px; display: grid; gap: 14px; }
.skeleton { height: 12px; border-radius: 6px; background: linear-gradient(90deg,#eee,#f6f6f6,#eee); background-size: 200% 100%; animation: shimmer 1.6s infinite; }
.skeleton.w-70 { width: 70%; } .skeleton.w-50 { width: 50%; } .skeleton.w-90 { width: 90%; }
.skeleton.big { height: 90px; border-radius: 14px; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.float-badge {
  position: absolute; background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem;
}
.float-badge .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.float-badge.one { top: 8%; left: -28px; animation: floaty 4s ease-in-out infinite; }
.float-badge.two { bottom: 10%; right: -22px; animation: floaty 4s ease-in-out infinite 1.5s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } }

/* ----- Marquee logos ----- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scrollx 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-weight: 800; font-size: 1.35rem; color: #c9c8c3; white-space: nowrap; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* =========================================================================
   CARDS GRIDS  (services / features / industries)
   ========================================================================= */
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.98rem; }
.service-card .more { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--accent); font-size: 0.92rem; }
.service-card .more svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.service-card:hover .more svg { transform: translateX(5px); }

.feature-list { display: grid; gap: 12px; margin-top: 8px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-2); }
.feature-list li svg { width: 22px; height: 22px; color: var(--success); flex: none; margin-top: 2px; }

/* ----- Stats ----- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.stat .num .text-accent { color: var(--accent); }
.stat .label { color: var(--text-2); font-weight: 600; font-size: 0.95rem; }

/* ----- Split / about ----- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: relative; background: #fff; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 26px; }
.mission-grid .card { padding: 26px; }

/* ----- Process steps ----- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; }
.step .n { width: 52px; height: 52px; border-radius: 14px; background: var(--text); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 18px; }
.step:nth-child(2) .n { background: var(--accent); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; }

/* ----- Portfolio ----- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 9px 20px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: 0.92rem; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.portfolio-item.hide { display: none; }
.portfolio-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); height: 100%; }
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.portfolio-thumb { aspect-ratio: 16/10; display: grid; place-items: center; position: relative; color: #fff; }
.portfolio-thumb .tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.9); color: var(--text); font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.portfolio-thumb .mono { font-size: 1.7rem; font-weight: 800; opacity: 0.95; }
.portfolio-body { padding: 24px; }
.portfolio-body .plat { font-size: 0.8rem; color: var(--text-2); font-weight: 600; }
.portfolio-body h3 { font-size: 1.25rem; margin: 6px 0 8px; }

/* ----- Testimonials ----- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.testimonial .stars { color: #F59E0B; letter-spacing: 2px; }
.testimonial blockquote { font-size: 1.02rem; color: var(--text); font-weight: 500; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),#ff9db0); color:#fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.testimonial .who .name { font-weight: 700; }
.testimonial .who .role { font-size: 0.85rem; color: var(--text-2); }

/* ----- FAQ ----- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(255,77,109,0.4); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; font-weight: 700; font-size: 1.05rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; left: 50%; top: 50%; transition: transform 0.3s var(--ease); }
.faq-q .plus::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .plus::after  { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.faq-item.open .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 24px 22px; }

/* ----- CTA band ----- */
.cta-band { position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: clamp(48px,7vw,84px); text-align: center; color: #fff; background: linear-gradient(135deg, #202124, #37383d); }
.cta-band::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,77,109,0.5); filter: blur(80px); top: -120px; right: -80px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   FORMS
   ========================================================================= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field .error-msg { color: var(--accent); font-size: 0.82rem; min-height: 0; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--accent); }
.field.invalid .error-msg { display: block; }

.alert { padding: 16px 20px; border-radius: 12px; font-weight: 600; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.alert-success { background: rgba(34,197,94,0.12); color: #15803d; border: 1px solid rgba(34,197,94,0.3); }
.alert-error { background: var(--accent-soft); color: var(--accent-dark); border: 1px solid rgba(255,77,109,0.3); }

/* ----- Contact layout ----- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.contact-info-card { display: grid; gap: 18px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .ci { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.contact-line h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-line p, .contact-line a { color: var(--text-2); font-size: 0.96rem; }
.contact-line a:hover { color: var(--accent); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-top: 8px; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* =========================================================================
   PAGE HERO (inner pages) + BREADCRUMB
   ========================================================================= */
.page-hero { position: relative; padding: calc(var(--header-h) + 56px) 0 60px; text-align: center; overflow: hidden; }
.page-hero .hero-blob.b1 { top: -160px; right: 5%; }
.page-hero h1 { margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero p { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; font-size: 1.1rem; }
.breadcrumb { position: relative; z-index: 1; display: flex; gap: 8px; justify-content: center; align-items: center; margin-bottom: 18px; font-size: 0.9rem; color: var(--text-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.5; }

/* =========================================================================
   BLOG
   ========================================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-thumb { aspect-ratio: 16/9; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.3rem; }
.post-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { display: flex; gap: 12px; font-size: 0.82rem; color: var(--text-2); font-weight: 600; }
.post-cat { color: var(--accent); }
.post-body h3 { font-size: 1.2rem; }
.post-body .more { margin-top: auto; font-weight: 700; color: var(--accent); font-size: 0.9rem; }

.article { max-width: 760px; margin-inline: auto; }
.article p { margin-bottom: 20px; font-size: 1.08rem; color: #3a3b3f; }
.article h2 { margin: 36px 0 16px; }
.article h3 { margin: 28px 0 12px; }
.article ul.bullets { margin: 0 0 20px 20px; list-style: disc; color: #3a3b3f; }
.article ul.bullets li { margin-bottom: 8px; }
.article blockquote { border-left: 4px solid var(--accent); padding: 8px 22px; margin: 24px 0; font-size: 1.15rem; font-weight: 600; color: var(--text); background: var(--accent-soft); border-radius: 0 12px 12px 0; }

/* ----- Careers ----- */
.job-list { display: grid; gap: 16px; max-width: 900px; margin-inline: auto; }
.job-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.job-card .meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--text-2); font-size: 0.88rem; font-weight: 600; margin-top: 6px; }
.job-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.pill { display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: 0.78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: #17181b; color: #c7c8cc; padding: 72px 0 28px; margin-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.footer-about p { color: #9a9ba0; font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #9a9ba0; font-size: 0.94rem; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; color: #9a9ba0; font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-form input { flex: 1; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: #fff; }
.newsletter-form input::placeholder { color: #7f8085; }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form button { padding: 12px 18px; border-radius: 10px; border: none; background: var(--accent); color: #fff; font-weight: 700; cursor: pointer; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.07); display: grid; place-items: center; color: #c7c8cc; transition: all 0.25s; }
.footer-socials a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 0.88rem; color: #83848a; }
.footer-bottom a:hover { color: var(--accent); }

/* =========================================================================
   FLOATING UI  (WhatsApp, back-to-top, cookie)
   ========================================================================= */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.45); z-index: 90; transition: transform 0.3s var(--ease); }
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 30px; height: 30px; }
.to-top { position: fixed; bottom: 92px; right: 26px; width: 46px; height: 46px; border-radius: 12px; background: var(--text); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s var(--ease); z-index: 90; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); }
.to-top svg { width: 20px; height: 20px; }

.cookie-notice { position: fixed; bottom: 20px; left: 20px; max-width: 400px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-lg); z-index: 95; transform: translateY(150%); transition: transform 0.5s var(--ease); }
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p { font-size: 0.9rem; margin-bottom: 14px; }
.cookie-notice .actions { display: flex; gap: 10px; }
.cookie-notice .btn { padding: 9px 18px; font-size: 0.86rem; }

/* ----- Accessibility ----- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
