:root {
  --purple-900: #2A0E4F;
  --purple-800: #3D1B5E;
  --purple-700: #4F2580;
  --purple-50:  #F5F0FA;
  --orange:     #F26B2C;
  --orange-dark:#D4541A;
  --orange-50:  #FFF4EC;
  --ink:        #0F0F1A;
  --slate:      #4A4A5E;
  --muted:      #7E7E92;
  --line:       #E8E6F0;
  --bg:         #FAFAFC;
  --white:      #FFFFFF;
  --green:      #1F9D55;
  --red:        #D63B3B;
  --radius:     14px;
  --shadow-sm:  0 2px 8px rgba(42, 14, 79, 0.06);
  --shadow-md:  0 8px 24px rgba(42, 14, 79, 0.08);
  --shadow-lg:  0 20px 50px rgba(42, 14, 79, 0.12);
  --ios:        #007AFF;
  --android:    #3DDC84;
  --android-dark:#2BB673;
  --hybrid:     #02569B;
    /* Flutter brand */
  --flutter:       #02569B;
  --flutter-dark:  #013A6B;
  --flutter-cyan:  #13B9FD;
  --flutter-50:    #E8F4FB;
  --purple-main: #3d1872;
  --orange-linear: #ff6b1a;
  --glass-white: rgba(255, 255, 255, 0.7);
  --glass-white-border: rgba(255, 255, 255, 0.4);
  --glass-purple: rgba(15, 5, 30, 0.45);
  --glass-purple-border: rgba(255, 255, 255, 0.08);
  --purple-light: #6a32b9;
    /* React Native brand */
  --rn-cyan:      #61DAFB;
  --rn-cyan-dark: #149ECA;
  --rn-navy:      #20232A;
  --rn-50:        #E6F8FE;
  --radius:       14px;
  /* Kotlin brand — purple to pink gradient */
  --kotlin-purple: #7F52FF;
  --kotlin-pink:   #C711E1;
  --kotlin-orange: #FF8B17;
  --kotlin-dark:   #5C3FC0;
  --kotlin-50:     #F2EAFF;
    /* Cross-platform — teal aqua as the page accent (distinct from all framework colors) */
  --teal:        #06B6D4;
  --teal-dark:   #0891B2;
  --teal-light:  #67E8F9;
  --teal-50:     #ECFEFF;
  /* Framework reference colors for the comparison section */
  --c-flutter:   #02569B;
  --c-rn:        #61DAFB;
  --c-ionic:     #3880FF;
  --c-kmp:       #7F52FF;
  --c-maui:      #512BD4;
    /* Mobile UI/UX — design discipline magenta */
  --magenta:       #E11D74;
  --magenta-dark:  #B01561;
  --coral:         #FF6B9D;
  --coral-light:   #FFC2D5;
  --magenta-50:    #FFEAF3;
  --radius:     14px;
  --shadow-sm:  0 2px 8px rgba(42, 14, 79, 0.06);
  --shadow-md:  0 8px 24px rgba(42, 14, 79, 0.08);
  --shadow-lg:  0 20px 50px rgba(42, 14, 79, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ============ TOP NAV (minimal placeholder) ============ */
.topnav {
  background: var(--purple-900);
  color: white;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topnav .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Sora'; font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a { opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-800) 50%, var(--purple-700) 100%);
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242,107,44,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(242, 107, 44, 0.15);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 107, 44, 0.3);
}
.hero h1 {
  color: white;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 100%;
  max-width: 700px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(242, 107, 44, 0.4);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(242, 107, 44, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* AEO Quick Answer card */
.aeo-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px;
  color: white;
}
.aeo-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding: 3px 10px;
  background: rgba(242, 107, 44, 0.15);
  border-radius: 4px;
}
.aeo-card h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
.aeo-card p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.85); }
.aeo-card .fill { color: var(--orange); font-weight: 600; }

@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: white;
  margin-top: -50px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  /*display: grid;
  grid-template-columns: repeat(5, 1fr);*/
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.trust-item { text-align: center; padding: 0 8px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Sora';
  font-size: 36px;
  font-weight: 800;
  color: var(--purple-800);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-num .fill { color: var(--orange); }
.trust-label { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }


@media (max-width: 900px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } .trust-item:nth-child(odd) { border-right: 1px solid var(--line); } .trust-item:nth-child(even) { border-right: none; } }

/* ============ SECTIONS ============ */
section { padding: 80px 0; float: left; width: 100%; }
section.tight { padding: 60px 0; }
.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
body .section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  /*max-width: 800px; */
  margin-left: 0px;
}
.section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 100%;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ============ WHY US ============ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { color: var(--slate); font-size: 15px; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ NATIVE VS HYBRID (UNIQUE TO THIS PAGE) ============ */
.decision-wrap {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.decision-table { width: 100%; border-collapse: collapse; }
.decision-table th, .decision-table td { padding: 18px 22px; text-align: left; font-size: 14.5px; vertical-align: top; }
.decision-table thead th { background: var(--purple-800); color: white; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.decision-table thead th:first-child { width: 26%; }
.decision-table tbody tr { border-bottom: 1px solid var(--line); }
.decision-table tbody tr:last-child { border-bottom: none; }
.decision-table tbody tr:nth-child(even) { background: var(--purple-50); }
.decision-table td:first-child { font-weight: 600; color: var(--purple-800); }
.tag-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-right: 6px;
  vertical-align: middle;
}
.tag-pill.native-tag { background: #E0F2FF; color: var(--ios); }
.tag-pill.hybrid-tag { background: #DEF3EE; color: var(--hybrid); }
@media (max-width: 768px) {
  .decision-wrap { overflow-x: auto; }
  .decision-table { min-width: 720px; }
}



/* ============ COMPARISON TABLE ============ */
.comparison-wrap { background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid var(--line); }
.comparison { width: 100%; border-collapse: collapse; }
.comparison th, .comparison td { padding: 16px 18px; text-align: left; font-size: 14px; vertical-align: top; }
.comparison thead th { background: var(--purple-800); color: white; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.comparison thead th.our { background: var(--orange); }
.comparison tbody tr { border-bottom: 1px solid var(--line); }
.comparison tbody tr:last-child { border-bottom: none; }
.comparison tbody tr:nth-child(even) { background: var(--purple-50); }
.comparison td:first-child { font-weight: 600; color: var(--purple-800); width: 22%; }
.comparison td.our { background: rgba(242,107,44,0.06); border-left: 3px solid var(--orange); font-weight: 500; color: var(--ink); }
.comparison .check { color: var(--green); font-weight: 700; }
.comparison .cross { color: var(--red); font-weight: 700; }
@media (max-width: 768px) {
  .comparison-wrap { overflow-x: auto; }
  .comparison { min-width: 720px; }
}



/* ============ SERVICES GRID ============ */
.services-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.services-tab {
  padding: 12px 22px;
  font-family: 'Sora';
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: transparent;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.services-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.services-tab:hover { color: var(--ink); }
.services-pane { display: none; }
.services-pane.active { display: grid; }
.services-grid-tabbed { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card-content {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.service-card-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 4px;
  background: var(--orange);
  border-radius: 0 0 4px 4px;
}
.service-card-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-content h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.service-card-content p { color: var(--slate); font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) { .services-grid-tabbed { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid-tabbed { grid-template-columns: 1fr; } }

/* ============ HIRING MODELS ============ */
.models-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.model-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--purple-700); }
.model-card.highlight {
  background: linear-gradient(160deg, #FFF4EC 0%, #FFFFFF 100%);
  border-color: var(--orange);
}
.model-card.highlight .model-num { background: var(--orange); }
.model-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.model-num {
  position: absolute;
  top: -16px;
  left: 22px;
  width: 36px;
  height: 36px;
  background: var(--purple-800);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora';
  font-weight: 700;
  font-size: 16px;
}
.model-card h3 { font-size: 17px; margin-top: 14px; margin-bottom: 10px; }
.model-card p { font-size: 14px; color: var(--slate); margin-bottom: 14px; line-height: 1.55; }
.model-card ul { list-style: none; }
.model-card li {
  font-size: 13px;
  color: var(--slate);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.5;
}
.model-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
@media (max-width: 900px) { .models-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .models-wrap { grid-template-columns: 1fr; } }

.engagement-includes {
  background: var(--purple-50);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--orange);
}
.engagement-includes h3 { font-size: 18px; margin-bottom: 16px; color: var(--purple-800); }
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.include-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.include-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 700px) { .includes-grid { grid-template-columns: 1fr; } }

/* ============ HIRING PROCESS ============ */
.process { background: linear-gradient(180deg, var(--purple-50) 0%, white 100%); }
.process-track { position: relative; padding: 20px 0; }
.process-track::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--orange) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; z-index: 1; }
.step {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-circle {
  width: 56px; height: 56px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora';
  font-weight: 700;
  font-size: 22px;
  border: 4px solid white;
  box-shadow: 0 0 0 1px var(--orange);
}
.step h3 { font-size: 15px; margin-bottom: 8px; }
.step .step-day { font-size: 12px; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--slate); line-height: 1.55; }
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-track::before { display: none; }
}
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }

/* ============ TECH STACK ============ */
.stack-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stack-card {
  background: var(--purple-900);
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.stack-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(242,107,44,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.stack-card h3 { color: var(--orange); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-weight: 600; }
.stack-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.stack-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
}
@media (max-width: 700px) { .stack-grid { grid-template-columns: 1fr; } }

/* ============ INDUSTRIES ============ */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card-content {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.3s;
}
.industry-card-content:hover {
  background: var(--purple-800);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-card-content:hover h3, .industry-card-content:hover p { color: white; }
.industry-card-content:hover .industry-link { color: var(--orange); }
.industry-icon { font-size: 28px; margin-bottom: 14px; }
.industry-card-content h3 { font-size: 16px; margin-bottom: 8px; }
.industry-card-content p { font-size: 13px; color: var(--slate); line-height: 1.55; margin-bottom: 12px; }
.industry-link { font-size: 12px; font-weight: 600; color: var(--purple-700); transition: color 0.3s; }
.industry-link::after { content: ' →'; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .industries-grid { grid-template-columns: 1fr; } }

/* ============ CASE STUDIES PLACEHOLDER ============ */
.case-studies-note {
  background: linear-gradient(135deg, #FFF9F2 0%, #FFEDD8 100%);
  border: 2px dashed var(--orange);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.case-studies-note h3 { color: var(--orange-dark); margin-bottom: 12px; font-size: 22px; }
.case-studies-note p { color: var(--slate); max-width: 620px; margin: 0 auto; font-size: 15px; }

/* ============ FAQ ============ */
/*.faq-list { max-width: 880px; margin: 0 auto; }*/
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--orange); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Sora';
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--orange);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 22px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,107,44,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta-inner { text-align: center; position: relative; z-index: 1; }
.final-cta h2 { color: white; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 32px; }
.final-cta .hero-ctas { justify-content: center; }
.contact-strip { display: flex; gap: 32px; justify-content: center; margin-top: 32px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,0.85); }
.contact-strip a { color: white; font-weight: 600; }

/* ============ TRUST BADGES STRIP ============ */
.badges-strip {
  background: white;
  padding: 36px 0 20px;
}
.badges-label {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.badges-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.badge-icons-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px;
  transition: all 0.25s;
  cursor: pointer;
  min-width: 168px;
  background: inherit !important;
}
.badge-icons-label:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--orange);
  background: white;
}
.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  font-family: 'Sora';
  color: white;
  flex-shrink: 0;
}
.badge-clutch    { background: #17313B; }
.badge-goodfirms { background: #F26B2C; }
.badge-aws       { background: #232F3E; }
.badge-google    { background: linear-gradient(135deg,#4285F4,#34A853,#FBBC04,#EA4335); }
.badge-top       { background: #6366F1; }
.badge-info { display: flex; flex-direction: column; line-height: 1.2; }
.badge-name { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.badge-meta { font-size: 11px; color: var(--muted); margin-top: 2px; display: flex; align-items: center; gap: 3px; }
.stars { color: #FFB300; letter-spacing: -1px; font-size: 10px; }

/* ============ ADVANTAGES SECTION ============ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.adv-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.adv-num {
  font-family: 'Sora';
  font-size: 38px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.adv-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--purple-800);
}
.adv-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}
@media (max-width: 900px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .advantages-grid { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 40px 0; text-align: center; font-size: 13px; }

/* ============ DEV NOTE ============ */
.devnote {
  background: #FFFBEB;
  border: 1px solid #F59E0B;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: #92400E;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.devnote-icon { font-size: 18px; flex-shrink: 0; }
.devnote strong { color: #78350F; }

/* fill placeholder marker styling */
.fill {
  background: linear-gradient(180deg, transparent 60%, rgba(242,107,44,0.25) 60%);
  color: var(--orange-dark);
  font-weight: 600;
  padding: 0 2px;
}
.why-icon svg {
  display: block;
}
.industry-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s, transform 0.3s;
}
.industry-card-content:hover .industry-icon svg {
  stroke: var(--white);
  transform: scale(1.05);
}
.industry-card-content:last-child .industry-icon svg {
  stroke: var(--orange);
}
.industry-card-content:last-child:hover .industry-icon svg {
  stroke: var(--white);
}

#hire-developers-banner {
height: auto !important;

}

/* ============ WHY US ============ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { color: var(--slate); font-size: 15px; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }


/* ============ PLATFORM CHOICE (UNIQUE TO THIS PAGE) ============ */
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.platform-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
.platform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 4px;
  width: 100%;
}
.platform-card.ios::before    { background: var(--ios); }
.platform-card.android::before{ background: var(--android); }
.platform-card.hybrid::before { background: var(--hybrid); }
.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  font-family: 'Sora';
  margin-bottom: 18px;
}
.platform-card.ios .platform-icon    { background: var(--ios); }
.platform-card.android .platform-icon{ background: var(--android); color: #1a1a1a; }
.platform-card.hybrid .platform-icon { background: var(--hybrid); }
.platform-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.platform-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}
.platform-card p {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 18px;
  line-height: 1.6;
}
.platform-meta {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.platform-meta-item { flex: 1; }
.platform-meta-num {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 22px;
  color: var(--purple-800);
  line-height: 1;
}
.platform-meta-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.platform-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.platform-tag {
  background: var(--purple-50);
  color: var(--purple-800);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
}
.platform-best {
  font-size: 13px;
  color: var(--slate);
}
.platform-best strong { color: var(--ink); }
@media (max-width: 900px) { .platforms-grid { grid-template-columns: 1fr; } }


/*Added by*/
.hire-main-content { background: inherit; }
body  { line-height:1.6; }
.management-solutions p { margin-left: 0px !important; }
.ocs-counter.counter-animation ul li span { line-height: initial; }
.management-solutions.hiring-steps { padding: 80px 0px; }
.badge-container {  display: flex; flex-wrap:wrap; gap:10px; }
.badge-container p.badges-label  { width: 100%; margin-bottom: 0px; color: rgba(255, 255, 255, 0.8); }
.badge-container img { width: 18.8%; }
.ocs-counter2.counter-animation ul { width: 100%; max-width:100%; }
.counter-animation,
.hero-sub { margin-bottom: 35px; }
.hero-inner { gap: 30px; }
.hero { padding-bottom: 40px ; }
.breadcrumb-item a { color: #ffffff; }

/* hire-android-developers */
.hire-android-mobile-app-developers .hero h1 .accent { color: var(--android); }
.hire-android-mobile-app-developers .aeo-card .fill {
  color: var(--android);
  font-weight: 600;
}
.hire-android-mobile-app-developers .fill { background: linear-gradient(180deg, transparent 60%, rgba(61, 220, 132, 0.3) 60%); }
.hire-android-mobile-app-developers .section-eyebrow, .hire-android-mobile-app-developers .aeo-label { color: var(--android-dark);  } 
.hire-android-mobile-app-developers .aeo-label { color: var(--android); background: rgba(61, 220, 132, 0.15); }
.hire-android-mobile-app-developers .why-icon { background: rgba(61, 220, 132, 0.12); }
.hire-android-mobile-app-developers .why-card:hover { transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--android); }
  .hire-android-mobile-app-developers .fill { background: linear-gradient(180deg, transparent 60%, rgba(61, 220, 132, 0.3) 60%);
  color: var(--android-dark); }
.hire-android-mobile-app-developers .comparison thead th.our { background: var(--android-dark); }
.hire-android-mobile-app-developers .comparison td.our { border-left: 3px solid var(--android); background: rgba(61, 220, 132, 0.08);
  border-left: 3px solid var(--android); }
.hire-android-mobile-app-developers .service-card-content::before {background: var(--android);}
.hire-android-mobile-app-developers .model-card.highlight .model-num { background: var(--android-dark); }
.hire-android-mobile-app-developers .model-badge { background: var(--android-dark);  }
.hire-android-mobile-app-developers .model-card.highlight { background: linear-gradient(160deg, rgba(61,220,132,0.08) 0%, #FFFFFF 100%); border-color: var(--android); }
.hire-android-mobile-app-developers .model-card li::before  { color: var(--android-dark);  }
.hire-android-mobile-app-developers .stack-card h3 { color: var(--android); }
.hire-android-mobile-app-developers .faq-item[open] { border-color: var(--android); }
.hire-android-mobile-app-developers .faq-item summary::after { color: var(--android-dark); }
.hire-android-mobile-app-developers svg{ color: var(--android-dark) }


/*hire-flutter-app-developers  page*/

/* ============ MULTI-TARGET BAND (FLUTTER-UNIQUE) ============ */
.targets-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.target-tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s;
}
.target-tile:hover {
  transform: translateY(-4px);
  border-color: var(--flutter);
  box-shadow: var(--shadow-md);
}
.target-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--flutter-50);
  color: var(--flutter);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-family: 'Sora';
  font-weight: 700;
}
.target-tile h4 {
  font-size: 14px;
  margin-bottom: 4px;
}
.target-tile p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 900px) { .targets-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .targets-grid { grid-template-columns: repeat(2, 1fr); } }


.hire-flutter-app-developers  .hero h1 .accent { color: var(--flutter-cyan); }
.hire-flutter-app-developers  .aeo-card .fill {
  color: var(--flutter-cyan);
  font-weight: 600;
}
.hire-flutter-app-developers  .fill { background: linear-gradient(180deg, transparent 60%, rgba(61, 220, 132, 0.3) 60%); background: linear-gradient(180deg, transparent 60%, rgba(2, 86, 155, 0.25) 60%);
  color: var(--flutter-dark); }
.hire-flutter-app-developers  .section-eyebrow, .hire-flutter-app-developers  .aeo-label { color: var(--flutter); } 
.hire-flutter-app-developers  .aeo-label { color: var(--flutter-cyan); background: rgba(19, 185, 253, 0.15); }
.hire-flutter-app-developers  .why-icon { background: var(--flutter-50); }
.hire-flutter-app-developers  .why-card:hover { transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--flutter); }
  /*.hire-flutter-app-developers  .fill { background: linear-gradient(180deg, transparent 60%, rgba(61, 220, 132, 0.3) 60%);
  color: var(--android-dark); }*/
.hire-flutter-app-developers  .comparison thead th.our { background: var(--flutter); }
.hire-flutter-app-developers  .comparison td.our { background: rgba(2, 86, 155, 0.06);
  border-left: 3px solid var(--flutter);
  font-weight: 500;
  color: var(--ink); background: rgba(2, 86, 155, 0.06);
  border-left: 3px solid var(--flutter);
  font-weight: 500;
  color: var(--ink); }
.hire-flutter-app-developers  .service-card-content::before { background: var(--flutter); }
.hire-flutter-app-developers  .model-card.highlight .model-num { background: var(--flutter); }
.hire-flutter-app-developers  .model-badge { background: var(--flutter);  }
.hire-flutter-app-developers  .model-card.highlight { background: linear-gradient(160deg, var(--flutter-50) 0%, #FFFFFF 100%);
  border-color: var(--flutter); }
.hire-flutter-app-developers  .model-card li::before  { color: var(--flutter); }
.hire-flutter-app-developers  .stack-card h3 { color: var(--flutter-cyan); }
.hire-flutter-app-developers  .faq-item[open] { border-color: var(--flutter); }
.hire-flutter-app-developers  .faq-item summary::after { color: var(--flutter); }
.hire-flutter-app-developers svg { color: var(--flutter);  }
.hire-flutter-app-developers .industry-card-content .industry-icon svg  { color: var(--flutter);  }
.hire-flutter-app-developers .industry-card-content:hover .industry-icon svg { color:#ffffff; }



.hire-mobile-apps-developers svg,.hire-ios-mobile-app-developers svg { color: var(--orange); }
.hire-mobile-apps-developers .industry-card-content .industry-icon svg,
.hire-ios-mobile-app-developers .industry-card-content .industry-icon svg { color: var(--orange); }
.hire-mobile-apps-developers .industry-card-content:hover .industry-icon svg,
.hire-ios-mobile-app-developers .industry-card-content:hover .industry-icon svg { color:#ffffff; }



/*react native page*/
/* ============ ARCHITECTURE STRIP (RN UNIQUE) ============ */
.hire-react-native-developers .hero h1 .accent { color: var(--rn-cyan); } 
.hire-react-native-developers .aeo-card .fill {
  color: var(--rn-cyan);
  font-weight: 600;
}
.hire-react-native-developers .section-eyebrow { color: var(--rn-cyan-dark); }
.hire-react-native-developers  .aeo-label { color: var(--rn-cyan);  }
.hire-react-native-developers .arch-card {
  background: var(--rn-navy);
  color: white;
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.hire-react-native-developers .arch-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(97, 218, 251, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hire-react-native-developers .arch-side h3 { color: var(--rn-cyan); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-weight: 600; }
.hire-react-native-developers .arch-side h4 { color: white; font-size: 22px; margin-bottom: 10px; letter-spacing: -0.02em; }
.hire-react-native-developers .arch-side p { color: rgba(255,255,255,0.78); font-size: 14.5px; line-height: 1.6; margin-bottom: 14px; }
.hire-react-native-developers .arch-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hire-react-native-developers .arch-tag {
  background: rgba(97, 218, 251, 0.14);
  border: 1px solid rgba(97, 218, 251, 0.3);
  color: var(--rn-cyan);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.hire-react-native-developers .why-card { border: 1px solid var(--line);  }
.hire-react-native-developers .why-icon { background: var(--rn-50); }
.hire-react-native-developers .fill {   background: linear-gradient(180deg, transparent 60%, rgba(97, 218, 251, 0.45) 60%); color: var(--rn-cyan-dark); } 
.hire-react-native-developers .comparison thead th.our { background: var(--rn-cyan-dark);  }
.hire-react-native-developers .comparison td.our { background: rgba(97, 218, 251, 0.1); border-left: 3px solid var(--rn-cyan-dark); }
.hire-react-native-developers .service-card-content::before { background: var(--rn-cyan-dark);  }
.hire-react-native-developers .model-card.highlight .model-num { background: var(--rn-cyan-dark); }
.hire-react-native-developers .model-badge { background: var(--rn-cyan-dark); }
.hire-react-native-developers .model-card li::before { color: var(--rn-cyan-dark); }
.hire-react-native-developers .model-card.highlight { background: linear-gradient(160deg, var(--rn-50) 0%, #FFFFFF 100%); border-color: var(--rn-cyan-dark);  }
.hire-react-native-developers .stack-card { background: var(--rn-navy); }
.hire-react-native-developers .stack-card::before { background: radial-gradient(circle, rgba(97, 218, 251, 0.22) 0%, transparent 70%); }
.hire-react-native-developers .stack-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); }
.hire-react-native-developers .stack-card h3  { color: var(--rn-cyan);  }
.hire-react-native-developers .faq-item[open] { border-color: var(--rn-cyan-dark); }
.hire-react-native-developers .faq-item summary::after { color: var(--rn-cyan-dark); }
.hire-react-native-developers svg { color: var(--rn-cyan-dark) }
@media (max-width: 900px) { .hire-react-native-developers .arch-card { grid-template-columns: 1fr; gap: 24px; } }
/*react native end*/

/*kotlin page*/
.hire-kotlin-mobile-app-developers .hero h1 .accent { background: linear-gradient(135deg, var(--kotlin-purple), var(--kotlin-pink), var(--kotlin-orange)); background-clip: text;
  -webkit-text-fill-color: transparent; }
.hire-kotlin-mobile-app-developers .aeo-label { background: linear-gradient(135deg, var(--kotlin-purple), var(--kotlin-pink)); color: #ffffff; }
.hire-kotlin-mobile-app-developers .aeo-card .fill { background: linear-gradient(135deg, var(--kotlin-purple), var(--kotlin-pink)); background-clip: text;
  -webkit-text-fill-color: transparent; }
.hire-kotlin-mobile-app-developers .section-eyebrow { background-clip: text; -webkit-text-fill-color: transparent;  
  background: linear-gradient(135deg, var(--kotlin-purple), var(--kotlin-pink)); background-clip: text;
  -webkit-text-fill-color: transparent; }
.hire-kotlin-mobile-app-developers .why-icon { background: var(--kotlin-50);  }
.hire-kotlin-mobile-app-developers .why-card:hover { border-color: var(--kotlin-purple); }
.hire-kotlin-mobile-app-developers .fill { background: linear-gradient(180deg, transparent 60%, rgba(199, 17, 225, 0.30) 60%);
  color: var(--kotlin-dark); }
.hire-kotlin-mobile-app-developers .comparison thead th.our { background: linear-gradient(135deg, var(--kotlin-purple), var(--kotlin-pink)); }
.hire-kotlin-mobile-app-developers .comparison td.our {background: rgba(127, 82, 255, 0.08); border-left: 3px solid var(--kotlin-purple);   }
.hire-kotlin-mobile-app-developers .service-card-content::before { background: linear-gradient(90deg, var(--kotlin-purple), var(--kotlin-pink)); }
.hire-kotlin-mobile-app-developers .model-card.highlight .model-num { background: linear-gradient(135deg, var(--kotlin-purple), var(--kotlin-pink)); }
.hire-kotlin-mobile-app-developers .model-badge { background: linear-gradient(135deg, var(--kotlin-purple), var(--kotlin-pink)); }
.hire-kotlin-mobile-app-developers .model-card.highlight {
  background: linear-gradient(160deg, var(--kotlin-50) 0%, #FFFFFF 100%); border-color: var(--kotlin-purple); }
.hire-kotlin-mobile-app-developers .model-card li::before { color: var(--kotlin-purple); }
.hire-kotlin-mobile-app-developers .stack-card h3 {
  background: linear-gradient(135deg, var(--kotlin-pink), var(--kotlin-purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hire-kotlin-mobile-app-developers .stack-card::before { background: radial-gradient(circle, rgba(199, 17, 225, 0.30) 0%, rgba(127, 82, 255, 0.20) 50%, transparent 70%); }
.hire-kotlin-mobile-app-developers .faq-item[open]  { border-color: var(--kotlin-purple); }
.hire-kotlin-mobile-app-developers .faq-item summary::after { color: var(--kotlin-purple); }
.hire-kotlin-mobile-app-developers svg { color: var(--kotlin-purple); }
.hire-kotlin-mobile-app-developers .industry-card-content .industry-icon svg { color: var(--kotlin-purple); }
.hire-kotlin-mobile-app-developers .industry-card-content:last-child .industry-icon svg { color: #ffffff; }
.hire-kotlin-mobile-app-developers  .industry-card-content:hover .industry-icon svg { color:#ffffff; }
    /* KMP TARGETS BAND */
.kmp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.kmp-tile { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 16px; text-align: center; transition: all 0.3s; position: relative; }
.kmp-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--kotlin-purple), var(--kotlin-pink)); border-radius: var(--radius) var(--radius) 0 0; opacity: 0; transition: opacity 0.3s; }
.kmp-tile:hover { transform: translateY(-4px); border-color: var(--kotlin-purple); box-shadow: var(--shadow-md); }
.kmp-tile:hover::before { opacity: 1; }
.kmp-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--kotlin-50); color: var(--kotlin-dark); font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-family: 'Sora'; font-weight: 800; }
.kmp-tile h4 { font-size: 14px; margin-bottom: 4px; }
.kmp-tile p { font-size: 12px; color: var(--muted); line-height: 1.4; }

@media (max-width: 900px) { .kmp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .kmp-grid { grid-template-columns: repeat(2, 1fr); } }


/* hire-cross-platform-developers page */
    /* FRAMEWORK CHOOSER (UNIQUE SECTION) */
.fw-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 28px; }
.fw-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 18px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.fw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.fw-card.flutter::before { background: var(--c-flutter); }
.fw-card.rn::before      { background: var(--c-rn); }
.fw-card.ionic::before   { background: var(--c-ionic); }
.fw-card.kmp::before     { background: var(--c-kmp); }
.fw-card.maui::before    { background: var(--c-maui); }
.fw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fw-card.flutter:hover { border-color: var(--c-flutter); }
.fw-card.rn:hover      { border-color: var(--c-rn); }
.fw-card.ionic:hover   { border-color: var(--c-ionic); }
.fw-card.kmp:hover     { border-color: var(--c-kmp); }
.fw-card.maui:hover    { border-color: var(--c-maui); }
.fw-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: white;
  font-family: 'Sora';
  margin-bottom: 12px;
}
.fw-card.flutter .fw-icon { background: var(--c-flutter); }
.fw-card.rn .fw-icon      { background: var(--c-rn); color: #20232A; }
.fw-card.ionic .fw-icon   { background: var(--c-ionic); }
.fw-card.kmp .fw-icon     { background: var(--c-kmp); }
.fw-card.maui .fw-icon    { background: var(--c-maui); }
.fw-card h3 { font-size: 16px; margin-bottom: 4px; }
.fw-tag { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.fw-card p { font-size: 13px; color: var(--slate); line-height: 1.55; flex-grow: 1; margin-bottom: 14px; }
.fw-best { font-size: 12px; color: var(--ink); padding: 10px 12px; background: var(--bg); border-radius: 8px; border-left: 3px solid var(--teal); }
.fw-best strong { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; font-weight: 700; }
.fw-card .fw-link {
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s;
}
.fw-card.flutter .fw-link { color: var(--c-flutter); }
.fw-card.rn .fw-link      { color: var(--c-rn); }
.fw-card.ionic .fw-link   { color: var(--c-ionic); }
.fw-card.kmp .fw-link     { color: var(--c-kmp); }
.fw-card.maui .fw-link    { color: var(--c-maui); }
.fw-card:hover .fw-link { gap: 8px; }
.fw-link::after { content: '→'; }
@media (max-width: 1100px) { .fw-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .fw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .fw-grid { grid-template-columns: 1fr; } }

.fw-help {
  background: var(--teal-50);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 22px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
}
.fw-help strong { color: var(--ink); }

.hire-cross-platform-developers .hero h1 .accent {
  color: var(--teal-light);
} 
.hire-cross-platform-developers .aeo-label { color: var(--teal-light); }
.hire-cross-platform-developers .aeo-card .fill { color: var(--teal-light); font-weight: 600; } 
.hire-cross-platform-developers .fill { background: linear-gradient(180deg, transparent 60%, rgba(6, 182, 212, 0.30) 60%); color: var(--teal-dark);}
.hire-cross-platform-developers svg { color : var(--teal-dark); }
.hire-cross-platform-developers .fw-icon svg { color : #ffffff; }
.hire-cross-platform-developers .section-eyebrow { color: var(--teal-dark);  } 
.hire-cross-platform-developers .why-icon { background: var(--teal-50);  }
.hire-cross-platform-developers .why-card:hover { border-color: var(--teal); }
.hire-cross-platform-developers .comparison thead th.our { background: var(--teal); }
.hire-cross-platform-developers .comparison td.our { background: rgba(6, 182, 212, 0.08); border-left: 3px solid var(--teal); }
.hire-cross-platform-developers .service-card-content::before { background: var(--teal); }
.hire-cross-platform-developers .model-card.highlight .model-num { background: var(--teal); }
.hire-cross-platform-developers .model-badge { background: var(--teal); }
.hire-cross-platform-developers .model-card.highlight { background: linear-gradient(160deg, var(--teal-50) 0%, #FFFFFF 100%);
  border-color: var(--teal); }
.hire-cross-platform-developers .model-card { border: 1px solid var(--line);  }
.hire-cross-platform-developers .model-card:hover { border-color: var(--purple-700); } 
.hire-cross-platform-developers .model-card li::before { color: var(--teal); }
.hire-cross-platform-developers .stack-card h3 { color: var(--teal-light); }
.hire-cross-platform-developers .stack-card::before { background: radial-gradient(circle, rgba(6, 182, 212, 0.30) 0%, rgba(103, 232, 249, 0.18) 50%, transparent 70%); }

.hire-cross-platform-developers .industry-card-content .industry-icon svg { color : var(--teal-dark); }
.hire-cross-platform-developers .industry-card-content:last-child .industry-icon svg { color: #ffffff; }
.hire-cross-platform-developers  .industry-card-content:hover .industry-icon svg { color:#ffffff; }
.hire-cross-platform-developers .faq-item[open] { border-color: var(--teal); }
.hire-cross-platform-developers .faq-item summary::after { color: var(--teal); }
.final-cta  svg { color: #ffffff !important; }

/*hire-mobile-uiux-developers page*/
  
  .design-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 30px;
}
.flow-step {
  background: white;
  padding: 26px 18px 22px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--magenta);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.flow-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.flow-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.flow-step:hover { background: var(--magenta-50); border-color: var(--magenta); z-index: 1; }
.flow-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--magenta), var(--coral));
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.flow-step h4 { font-size: 14px; margin-bottom: 6px; line-height: 1.3; }
.flow-step p { font-size: 12px; color: var(--slate); line-height: 1.5; }
@media (max-width: 1100px) {
  .design-flow { grid-template-columns: repeat(3, 1fr); }
  .flow-step:not(:last-child)::after { display: none; }
  .flow-step { border-radius: 0 !important; }
  .flow-step:nth-child(1) { border-radius: var(--radius) 0 0 0 !important; }
  .flow-step:nth-child(3) { border-radius: 0 var(--radius) 0 0 !important; }
  .flow-step:nth-child(4) { border-radius: 0 0 0 var(--radius) !important; }
  .flow-step:nth-child(6) { border-radius: 0 0 var(--radius) 0 !important; }
}
@media (max-width: 600px) {
  .design-flow { grid-template-columns: 1fr; }
  .flow-step { border-radius: 0 !important; }
  .flow-step:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .flow-step:last-child { border-radius: 0 0 var(--radius) var(--radius) !important; }
}

/* DELIVERABLES SECTION — UNIQUE */
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.deliv-card {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.deliv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--magenta);
}
.deliv-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--magenta-50);
  color: var(--magenta-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.deliv-emoji { font-size: 28px; margin-bottom: 12px; display: block; }
.deliv-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--purple-800); }
.deliv-card p { font-size: 13.5px; color: var(--slate); line-height: 1.6; }
@media (max-width: 900px) { .deliverables-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .deliverables-grid { grid-template-columns: 1fr; } }


.hire-mobile-uiux-developers .hero h1 .accent { background: linear-gradient(135deg, var(--coral-light), var(--coral)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hire-mobile-uiux-developers  .aeo-label { background: linear-gradient(135deg, var(--magenta), var(--coral)); color: white; }
.hire-mobile-uiux-developers .fill { color: var(--magenta-dark); }
.hire-mobile-uiux-developers .aeo-card .fill { background: linear-gradient(135deg, var(--coral-light), var(--coral)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }
.hire-mobile-uiux-developers .section-eyebrow { background: linear-gradient(135deg, var(--magenta), var(--coral)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hire-mobile-uiux-developers .why-icon { background: var(--magenta-50); }
.hire-mobile-uiux-developers .why-card:hover { border-color: var(--magenta); }
.hire-mobile-uiux-developers svg { color: var(--magenta); }
.hire-mobile-uiux-developers .comparison thead th.our { background: linear-gradient(135deg, var(--magenta), var(--coral)); }
.hire-mobile-uiux-developers .comparison td.our { background: rgba(225, 29, 116, 0.06); border-left: 3px solid var(--magenta);  }
.hire-mobile-uiux-developers .service-card-content::before { background: linear-gradient(90deg, var(--magenta), var(--coral)); }
.hire-mobile-uiux-developers .model-card.highlight .model-num { background: linear-gradient(135deg, var(--magenta), var(--coral)); }
.hire-mobile-uiux-developers .model-card.highlight { background: linear-gradient(160deg, var(--magenta-50) 0%, #FFFFFF 100%); border-color: var(--magenta); }
.hire-mobile-uiux-developers .model-badge { background: linear-gradient(135deg, var(--magenta), var(--coral)); }
.hire-mobile-uiux-developers .model-card li::before { color: var(--magenta); }

.hire-mobile-uiux-developers  .stack-card h3 { background: linear-gradient(135deg, var(--coral), var(--coral-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hire-mobile-uiux-developers .stack-card::before { background: radial-gradient(circle, rgba(225, 29, 116, 0.30) 0%, rgba(255, 107, 157, 0.18) 50%, transparent 70%); }
.hire-mobile-uiux-developers .industry-card-content .industry-icon svg  { color: var(--magenta);  }
.hire-mobile-uiux-developers .industry-card-content:last-child .industry-icon svg { color: #ffffff; }
.hire-mobile-uiux-developers .industry-card-content:hover .industry-icon svg { color:#ffffff; }
.hire-mobile-uiux-developers  .faq-item[open] { border-color: var(--magenta); }
.hire-mobile-uiux-developers  .faq-item summary::after { color: var(--magenta); }
body footer svg { color: #000000 !important; }