/* ==========================================
   WILL TECH SOLUTIONS — Stylesheet
   Building Smart Systems for Modern Businesses
   ========================================== */

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

:root {
  --navy:        #0b1628;
  --navy-mid:    #0f1f3d;
  --navy-soft:   #162040;
  --blue:        #1a6cf0;
  --blue-dark:   #0f52c8;
  --blue-light:  #4d94ff;
  --blue-glow:   rgba(26, 108, 240, 0.22);
  --indigo:      #4f46e5;
  --cyan:        #06b6d4;
  --white:       #ffffff;
  --off-white:   #f4f7fd;
  --surface:     #f8faff;
  --gray-100:    #eaeef8;
  --gray-300:    #c8d0e8;
  --gray-400:    #8898b8;
  --gray-500:    #6478a0;
  --gray-600:    #4a5880;
  --text:        #0f1e3c;
  --text-soft:   #4a5880;
  --border:      rgba(26, 108, 240, 0.13);
  --border-hard: rgba(26, 108, 240, 0.22);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 12px rgba(11, 22, 40, 0.07);
  --shadow:      0 6px 28px rgba(11, 22, 40, 0.11);
  --shadow-lg:   0 16px 52px rgba(11, 22, 40, 0.16);
  --shadow-xl:   0 28px 80px rgba(11, 22, 40, 0.22);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-head:   'Plus Jakarta Sans', 'Inter', sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { padding: 128px 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px var(--blue-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 108, 240, 0.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
}

.btn-full { width: 100%; border-radius: var(--radius); font-size: 15px; padding: 15px; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* === SECTION LABELS === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26, 108, 240, 0.08);
  border: 1px solid rgba(26, 108, 240, 0.16);
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.section-sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 68px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(11, 22, 40, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(26, 108, 240, 0.18), 0 4px 24px rgba(0, 0, 0, 0.28);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 62px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue-light);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 14px var(--blue-glow);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 22px rgba(26, 108, 240, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 108, 240, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 108, 240, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb-1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(26,108,240,0.35), transparent); top: -160px; right: -80px; opacity: 0.6; }
.orb-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(6,182,212,0.2), transparent); bottom: 0; left: -100px; }
.orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(79,70,229,0.2), transparent); top: 35%; left: 35%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- Hero Text --- */
.hero-text { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(26, 108, 240, 0.12);
  border: 1px solid rgba(26, 108, 240, 0.28);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22d97f;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 217, 127, 0.7);
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.65; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat { display: flex; flex-direction: column; gap: 3px; }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

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

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* --- Hero Scroll Indicator --- */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================
   BROWSER / DASHBOARD MOCKUP
   ========================================== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-mockup {
  width: 100%;
  max-width: 520px;
  background: #111827;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
  animation: float-mockup 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float-mockup {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.browser-chrome {
  background: #1e2740;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.browser-dots i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.browser-dots i:nth-child(1) { background: #ff5f57; }
.browser-dots i:nth-child(2) { background: #febc2e; }
.browser-dots i:nth-child(3) { background: #28c840; }

.browser-addressbar {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.01em;
}

.browser-screen {
  display: flex;
  height: 320px;
}

/* App Sidebar */
.app-sidebar {
  width: 110px;
  background: #0f172a;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.app-logo-mini {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0 4px;
  margin-bottom: 4px;
}
.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.logo-dot.d1 { background: var(--blue); }
.logo-dot.d2 { background: var(--cyan); }

.app-nav { display: flex; flex-direction: column; gap: 2px; }

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: 7px;
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  cursor: default;
  transition: var(--transition);
}
.app-nav-item svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.app-nav-item.active {
  background: rgba(26, 108, 240, 0.2);
  color: var(--blue-light);
}

/* App Main */
.app-main {
  flex: 1;
  background: #f8faff;
  padding: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-page-title {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.app-actions { display: flex; gap: 5px; }

.app-btn-sm {
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--gray-500);
  cursor: default;
}

.app-btn-primary-sm {
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  cursor: default;
}

.app-stats-row {
  display: flex;
  gap: 8px;
}

.app-stat {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 8px 10px;
  box-shadow: var(--shadow-sm);
}
.app-stat.green .app-stat-val { color: #16a34a; }

.app-stat-val {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.app-stat-key {
  font-size: 8.5px;
  color: var(--gray-400);
  font-weight: 500;
}

.app-chart {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  box-shadow: var(--shadow-sm);
}

.app-bar {
  flex: 1;
  height: var(--h);
  background: rgba(26, 108, 240, 0.18);
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}
.app-bar.hi { background: var(--blue); }

.app-table {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.app-trow {
  display: flex;
  border-bottom: 1px solid var(--gray-100);
}
.app-trow:last-child { border-bottom: none; }

.app-tcell {
  flex: 1;
  padding: 6px 8px;
  font-size: 8.5px;
  font-weight: 500;
  color: var(--text-soft);
  display: flex;
  align-items: center;
}

.app-trow.head .app-tcell {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: var(--surface);
}

.skel {
  display: block;
  height: 7px;
  background: var(--gray-100);
  border-radius: 4px;
}
.skel.w80 { width: 80%; }
.skel.w70 { width: 70%; }
.skel.w60 { width: 60%; }
.skel.w50 { width: 50%; }

.tbadge {
  font-size: 7.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.tbadge.confirmed {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.tbadge.pending {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

/* Hero floating cards */
.hero-float-card {
  position: absolute;
  background: rgba(15, 31, 61, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  min-width: 160px;
}

.hero-float-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-float-card span {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

.fc-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-icon svg { width: 16px; height: 16px; }
.fc-icon.success { background: rgba(22, 163, 74, 0.2); color: #4ade80; }
.fc-icon.blue { background: rgba(26, 108, 240, 0.2); color: var(--blue-light); }

.fc-1 { bottom: 24px; left: -24px; animation: float-card-1 5s ease-in-out infinite; }
.fc-2 { top: 24px; right: -24px; animation: float-card-2 5.5s ease-in-out infinite 0.8s; }

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-card-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee-wrap {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.marquee-track .mdot {
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================
   ABOUT
   ========================================== */
.about { background: var(--white); }

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

.about-visual { position: relative; }

.about-card-wrap {
  position: relative;
  padding: 24px;
}

.about-img-frame {
  background: linear-gradient(145deg, var(--navy) 0%, #142050 100%);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(26,108,240,0.18), transparent);
  border-radius: 50%;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,0.12), transparent);
  border-radius: 50%;
}

.about-logo-large {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 1;
}

.about-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  backdrop-filter: blur(8px);
}
.about-float-card strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
.about-float-card span {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 1px;
}
.float-icon { font-size: 20px; }

.card-1 { top: 4px; right: -8px; }
.card-2 { bottom: 28px; left: -8px; }

.about-desc {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 16px;
}

.about-list {
  margin: 26px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}

.check-icon {
  width: 21px;
  height: 21px;
  min-width: 21px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
}

/* ==========================================
   SERVICES
   ========================================== */
.services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hard);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 108, 240, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.service-card:hover .service-icon svg { color: var(--white); }

.service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--surface);
  line-height: 1;
  transition: color var(--transition);
  letter-spacing: -0.04em;
}
.service-card:hover .service-num { color: rgba(26, 108, 240, 0.06); }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 11px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.service-card > p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.72;
  margin-bottom: 18px;
}

.service-card ul { display: flex; flex-direction: column; gap: 7px; }

.service-card ul li {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================
   PROCESS
   ========================================== */
.process { background: var(--navy); }

.process .section-label {
  color: var(--blue-light);
  background: rgba(77, 148, 255, 0.12);
  border-color: rgba(77, 148, 255, 0.22);
}
.process .section-label::before { background: var(--blue-light); }
.process .section-title { color: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.process-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
  font-size: 1.4rem;
  color: rgba(26, 108, 240, 0.4);
  line-height: 1;
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ==========================================
   PORTFOLIO
   ========================================== */
.portfolio { background: var(--white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  background: var(--white);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hard);
}

.portfolio-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  padding: 24px;
  letter-spacing: 0.01em;
}

.p1 { background: linear-gradient(145deg, #091636 0%, #1a6cf0 100%); }
.p2 { background: linear-gradient(145deg, #082030 0%, #0891b2 100%); }
.p3 { background: linear-gradient(145deg, #150b38 0%, #4f46e5 100%); }
.p4 { background: linear-gradient(145deg, #0a2810 0%, #15803d 100%); }

.placeholder-icon svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.portfolio-tags span {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}

.portfolio-info {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-client {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.portfolio-info h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.portfolio-info p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.72;
  margin-bottom: 18px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  gap: 4px;
  transition: gap var(--transition);
}
.portfolio-link:hover { gap: 8px; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials { background: var(--surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tcard-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.tcard > p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.tcard-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.tcard-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.tcard-author span {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 1px;
  display: block;
}

/* ==========================================
   TEAM
   ========================================== */
.team { background: var(--navy); }
.team .section-title { color: var(--white); }
.team .section-sub { color: rgba(255, 255, 255, 0.52); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.team-card:hover {
  background: rgba(26, 108, 240, 0.07);
  border-color: rgba(26, 108, 240, 0.25);
  transform: translateY(-4px);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--ac, #1a6cf0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  margin-bottom: 16px;
}

.team-dept-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc, #1a6cf0);
  background: rgba(26, 108, 240, 0.1);
  background-color: color-mix(in srgb, var(--bc, #1a6cf0) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--bc, #1a6cf0) 25%, transparent);
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: 10px;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
  width: 100%;
}
.team-info strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.team-info span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.45;
}

/* ==========================================
   WHY US
   ========================================== */
.whyus { background: var(--white); }

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

.whyus-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-item:hover {
  border-color: var(--border-hard);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(26, 108, 240, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--transition);
}
.feature-icon svg { width: 20px; height: 20px; color: var(--blue); }

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.feature-item:hover .feature-icon svg { color: var(--white); }

.feature-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.feature-item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
}

.whyus-text .section-title { margin-bottom: 18px; }
.whyus-text .about-desc { margin-bottom: 32px; }

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  background: var(--navy);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(26,108,240,0.28), transparent);
  top: -120px; left: -100px;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-cta-2 {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(6,182,212,0.14), transparent);
  bottom: -100px; right: -80px;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-inner { position: relative; z-index: 2; }

.cta-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(26, 108, 240, 0.15);
  border: 1px solid rgba(26, 108, 240, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  position: sticky;
  top: 96px;
}

.contact-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.72;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(26, 108, 240, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--blue-light); }

.contact-item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-item span, .contact-item a {
  font-size: 14.5px;
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--blue-light); }

.contact-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(34, 217, 127, 0.07);
  border: 1px solid rgba(34, 217, 127, 0.2);
  border-radius: 50px;
  padding: 9px 15px;
  margin-top: 10px;
}

.avail-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: #22d97f;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 217, 127, 0.6);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.contact-availability span {
  font-size: 12.5px;
  font-weight: 600;
  color: #22d97f;
}

/* === FORM === */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238898b8' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px;
  padding-right: 42px;
}

.input-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12) !important;
}

.field-error {
  display: block;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 5px;
  font-weight: 500;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: var(--radius);
  padding: 13px 17px;
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; color: #16a34a; flex-shrink: 0; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.72;
  max-width: 250px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-col { display: flex; flex-direction: column; gap: 11px; }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 5px;
}

.footer-col a,
.footer-col span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue-light); }

.footer-bottom { padding: 22px 0; }
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.01em;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .hero-inner { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 56px; }
  .whyus-grid { gap: 56px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-arrow { display: none; }
  .process-step { padding: 0; text-align: left; }

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

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: #0b1628;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 40px;
    gap: 4px;
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    z-index: 999;
    border-left: 1px solid rgba(26, 108, 240, 0.15);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    padding: 11px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-links a:hover { color: var(--white) !important; }
  .nav-cta {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    border-bottom: none !important;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-card-wrap { max-width: 380px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.featured { grid-column: span 1; display: block; }

  .whyus-grid { grid-template-columns: 1fr; gap: 48px; }
  .whyus-features { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .whyus-features { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .team-grid { grid-template-columns: 1fr; }
}
