/* ============================================================
   GrOKarSAB Technology — Stylesheet
   Brand: #222222 primary | #6FECFF secondary | #BAEEFF third | #E02020 accent-red
   ============================================================ */

/* Replace the @import line with: */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* Replace in :root: */


:root {
  --primarycolor: #222222;
  --secondarycolor: #6FECFF;
  --thirdcolor: #BAEEFF;
  --redaccent: #E02020;
  --redlight: #FFF0F0;
  --fontwhitecolor: #ffffff;
  --cyanlight: #E8FDFF;
  --cyandark: #00B5CE;
  --bg-light: #F7FEFF;
  --bg-white: #ffffff;
  --text-muted: #6B7280;
  --text-dark: #1A1A2E;
  --border-light: #D8F5FA;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 12px rgba(111, 236, 255, 0.12);
  --shadow-md: 0 8px 36px rgba(111, 236, 255, 0.2);
  --shadow-card: 0 4px 24px rgba(34, 34, 34, 0.07);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--primarycolor);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

p {
  color: #444;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Preloader */


/* ADD THIS — overrides only the img logo */


/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-logo {
  width: 80px;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--redaccent), var(--secondarycolor));
  animation: slide 1.2s ease-in-out infinite;
}

@keyframes slide {
  0% {
    width: 0;
  }

  80% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

.preloader-inner img.preloader-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* Navbar */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  padding: 5px 0;
}

.navbar-custom.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 4px 24px rgba(111, 236, 255, 0.12);
  padding: 1px 0;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  height: 90px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link-custom {
  display: block;
  padding: 8px 15px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--primarycolor);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-link-custom:hover {
  color: var(--cyandark);
  background: var(--cyanlight);
}

.nav-link-custom.active {
  color: var(--redaccent);
}

.nav-cta {
  background: var(--redaccent) !important;
  color: white !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: #c01515 !important;
}

.navbar-toggler-custom {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar-toggler-custom span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primarycolor);
  border-radius: 2px;
}

.marquee-item i {
  font-size: 28px;
  margin-right: 10px;
  vertical-align: middle;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
}



@media(max-width:900px) {
  .navbar-toggler-custom {
    display: flex;
  }

  #navMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }

  #navMenu.show {
    display: flex;
  }

  .nav-link-custom {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

/* Buttons */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--redaccent);
  color: white;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(224, 32, 32, 0.25);
}

.btn-primary-custom:hover {
  background: #c01515;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 32, 32, 0.32);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primarycolor);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--primarycolor);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary-custom:hover {
  background: var(--primarycolor);
  color: white;
}

.btn-cyan-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondarycolor);
  color: var(--primarycolor);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(111, 236, 255, 0.35);
}

.btn-cyan-custom:hover {
  background: var(--cyandark);
  color: white;
  transform: translateY(-2px);
}

/* Layout */
.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyanlight);
  color: var(--cyandark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondarycolor);
  border-radius: 50%;
}

.section-tag-red {
  background: var(--redlight);
  color: var(--redaccent);
}

.section-tag-red::before {
  background: var(--redaccent);
}

.text-center {
  text-align: center;
}

.highlight-cyan {
  color: var(--cyandark);
}

.highlight-red {
  color: var(--redaccent);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  padding-top: 96px;
  background: linear-gradient(135deg, #F7FEFF 0%, #EAF9FF 50%, #F5FFFE 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 236, 255, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 32, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border-light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--redaccent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-heading {
  margin-bottom: 22px;
}

.typed-wrap {
  display: inline-block;
  background: var(--cyanlight);
  padding: 3px 14px;
  border-radius: 6px;
}

#typedText {
  color: var(--cyandark);
  font-family: var(--font-display);
  font-weight: 700;
}

.hero-desc {
  color: #555;
  max-width: 480px;
  margin-bottom: 32px;
  font-size: 1.02rem;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-num-hero {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primarycolor);
}

.stat-num-hero span {
  color: var(--redaccent);
}

.stat-label-hero {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-img-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(34, 34, 34, 0.13);
  display: block;
}

.hero-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(34, 34, 34, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-1 {
  bottom: 28px;
  left: -28px;
}

.hero-float-2 {
  top: 28px;
  right: -20px;
}

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.float-icon.cyan-bg {
  background: var(--cyanlight);
}

.float-icon.red-bg {
  background: var(--redlight);
}

.float-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.float-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media(max-width:900px) {

  .hero-float-1,
  .hero-float-2 {
    display: none;
  }
}

/* Clients marquee */
.clients-strip {
  padding: 30px 0;
  background: white;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.clients-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.marquee-wrap {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: #bbb;
  padding: 6px 18px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondarycolor), var(--cyandark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondarycolor);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--cyanlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: background 0.25s;
}

.service-card:hover .service-icon {
  background: var(--secondarycolor);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--cyandark);
  transition: gap 0.2s;
}

.service-card:hover .service-link {
  gap: 10px;
}

/* Split image-text */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse>* {
  direction: ltr;
}

@media(max-width:768px) {

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
}

.split-img-wrap {
  position: relative;
}

.split-img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-card);
}

.img-badge-red {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--redaccent);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(224, 32, 32, 0.25);
}

.img-badge-cyan {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--secondarycolor);
  color: var(--primarycolor);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(111, 236, 255, 0.35);
}

/* Stats bar */
.stats-bar {
  background: var(--primarycolor);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondarycolor);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Testimonials */
.testimonials-bg {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-light);
  position: relative;
}

.testi-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--secondarycolor);
  font-family: Georgia;
  position: absolute;
  top: -4px;
  left: 22px;
  line-height: 1;
  opacity: 0.45;
}

.testi-stars {
  color: var(--redaccent);
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.testi-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 18px;
  font-style: italic;
  padding-top: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondarycolor);
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--secondarycolor);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: white;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--primarycolor);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--cyandark);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: var(--cyanlight);
  font-size: 0.9rem;
  color: #555;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 14px 22px 18px;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--primarycolor) 0%, #1a2e40 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(111, 236, 255, 0.1) 0%, transparent 60%), radial-gradient(circle at 70% 50%, rgba(224, 32, 32, 0.07) 0%, transparent 60%);
}

.cta-band>* {
  position: relative;
}

.cta-band h2 {
  color: white;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* Footer */
.footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

.footer-brand-logo {
  height: 46px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h5 {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--secondarycolor);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--secondarycolor);
  color: var(--primarycolor);
  border-color: var(--secondarycolor);
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, #F7FEFF 0%, #E8FDFF 60%, #F0FFFE 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(111, 236, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.05rem;
  color: #555;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.breadcrumb-nav a {
  color: var(--cyandark);
}

.breadcrumb-nav span {
  color: var(--text-muted);
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.team-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 22px 18px;
}

.team-card-body h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card-body .role {
  font-size: 0.78rem;
  color: var(--cyandark);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: all 0.2s;
}

.team-social:hover {
  background: var(--secondarycolor);
  border-color: var(--secondarycolor);
  color: var(--primarycolor);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.value-card {
  padding: 30px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.value-card h4 {
  margin-bottom: 8px;
  font-size: 0.97rem;
}

.value-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Tech tags */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  background: white;
  color: var(--primarycolor);
  transition: all 0.2s;
}

.tech-tag:hover {
  background: var(--cyanlight);
  border-color: var(--secondarycolor);
  color: var(--cyandark);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}

.process-step {
  text-align: center;
  padding: 32px 22px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondarycolor), var(--cyandark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 18px;
}

.process-step h4 {
  font-size: 0.97rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Jobs */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.job-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  transition: all 0.2s;
}

.job-card:hover {
  border-color: var(--secondarycolor);
  box-shadow: var(--shadow-sm);
}

.job-info h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.job-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.tag-loc {
  background: var(--cyanlight);
  color: var(--cyandark);
}

.tag-type {
  background: var(--redlight);
  color: var(--redaccent);
}

.tag-dept {
  background: #F3F4F6;
  color: #666;
}

/* Apply form */
.form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-card);
  max-width: 700px;
  margin: 0 auto;
}

@media(max-width:600px) {
  .form-wrap {
    padding: 28px 18px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media(max-width:540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.82rem;
  margin-bottom: 7px;
  color: var(--primarycolor);
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--primarycolor);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--secondarycolor);
  box-shadow: 0 0 0 3px rgba(111, 236, 255, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

#formSuccess {
  display: none;
  background: var(--cyanlight);
  border: 1px solid var(--secondarycolor);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  margin-top: 14px;
  color: var(--cyandark);
  font-weight: 600;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}

.pricing-card.featured {
  border-color: var(--secondarycolor);
  border-width: 2px;
  box-shadow: 0 8px 40px rgba(111, 236, 255, 0.22);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-badge-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondarycolor);
  color: var(--primarycolor);
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primarycolor);
  margin: 18px 0 6px;
}

.pricing-price sup {
  font-size: 1.1rem;
  vertical-align: top;
  margin-top: 7px;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.pricing-feats {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pricing-feats li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pricing-feats li::before {
  content: '✓';
  color: var(--cyandark);
  font-weight: 700;
  flex-shrink: 0;
}

/* Utilities */
.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.gap-c {
  gap: 14px;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

@media(max-width:768px) {
  .section-pad {
    padding: 64px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .split-section.reverse {
    gap: 36px;
  }
}

@media(max-width:480px) {
  .container-custom {
    padding: 0 16px;
  }
}