/* ===== CSS VARIABLES ===== */
:root {
  --bg: #050810;
  --bg2: #080d1a;
  --surface: #0d1628;
  --accent: #4f8ef7;
  --accent2: #7b5cfa;
  --accent3: #00e5c8;
  --text: #e8edf8;
  --muted: #7a8aaa;
  --border: rgba(79, 142, 247, 0.15);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; line-height: 1.15; }

/* ===== PAGE SYSTEM ===== */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.0rem 6%;
  background: rgba(5, 8, 16, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 2.5rem; font-weight: 800;
  letter-spacing: -0.5px; color: var(--text); text-decoration: none; cursor: pointer;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 6px;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.4px; transition: opacity 0.2s, transform 0.2s;
  cursor: pointer; border: none; text-decoration: none;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s;
}
.drawer-overlay.open { display: block; opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 400;
  width: min(420px, 90vw); background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2.5rem 2.5rem 3rem;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end; background: none; border: none;
  cursor: pointer; font-size: 1.8rem; color: #333;
  line-height: 1; margin-bottom: 2.5rem; transition: color 0.2s;
}
.drawer-close:hover { color: #000; }
.drawer-nav { list-style: none; display: flex; flex-direction: column; gap: 0; flex: 1; }
.drawer-nav li a {
  display: block; padding: 1.05rem 0;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 1.25rem; font-weight: 600;
  color: #1a1a2e; text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.2s; cursor: pointer;
}
.drawer-nav li a:hover { color: #7b5cfa; }
.drawer-nav li a.active { color: #c43fdb; }
.drawer-cta-wrap { margin-top: 2.5rem; }
.drawer-cta {
  display: block; text-align: center; padding: 0.9rem 2rem; border-radius: 50px;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 1.05rem; font-weight: 700;
  color: #1a1a2e; cursor: pointer; border: 2.5px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #4f8ef7, #c43fdb) border-box;
  transition: all 0.3s;
}
.drawer-cta:hover {
  background: linear-gradient(135deg, #4f8ef7, #c43fdb);
  color: #fff; border-color: transparent;
}

/* ===== SHARED SECTION STYLES ===== */
section { padding: 5.5rem 6%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; color: var(--accent);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-label::before {
  content: ''; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
}
.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800; letter-spacing: -1px; max-width: 640px;
}
.section-heading em { font-style: normal; color: var(--accent); }
.section-sub { margin-top: 1rem; color: var(--muted); max-width: 560px; font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 0.8rem 2rem; border-radius: 8px;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(79, 142, 247, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer; display: inline-block; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79, 142, 247, 0.5); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); padding: 0.8rem 2rem; border-radius: 8px;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer; display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(79, 142, 247, 0.07); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 8rem 6% 5rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 247, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.blob1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.22) 0%, transparent 70%);
  top: -80px; left: -100px;
  animation: blobFloat 9s ease-in-out infinite;
}
.blob2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123, 92, 250, 0.18) 0%, transparent 70%);
  bottom: 0; right: -60px;
  animation: blobFloat 12s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.06); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(79, 142, 247, 0.1); border: 1px solid rgba(79, 142, 247, 0.25);
  padding: 0.35rem 0.9rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500; color: var(--accent);
  letter-spacing: 0.6px; text-transform: uppercase;
  margin-bottom: 1.6rem; width: fit-content;
  animation: fadeUp 0.7s ease both;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent3); box-shadow: 0 0 8px var(--accent3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-heading {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800; letter-spacing: -2px; line-height: 1.05;
  max-width: 800px; animation: fadeUp 0.8s 0.1s ease both;
}
.hero-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, var(--accent3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  margin-top: 1.5rem; max-width: 560px; color: var(--muted);
  font-size: 1.08rem; font-weight: 300; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.4rem; animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 3.5rem; margin-top: 4rem;
  animation: fadeUp 0.8s 0.4s ease both; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 2.2rem; font-weight: 800;
  color: var(--text); letter-spacing: -1px;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(13, 22, 40, 0.6); padding: 1rem 0;
}
.ticker {
  display: flex; gap: 4rem;
  animation: ticker 22s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker span {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 0.82rem;
  font-weight: 700; color: var(--muted); letter-spacing: 2px; text-transform: uppercase;
}
.ticker span em { color: var(--accent); font-style: normal; margin: 0 1rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.05), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(79, 142, 247, 0.4); box-shadow: 0 16px 48px rgba(79, 142, 247, 0.12); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(79, 142, 247, 0.3);
}
.service-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { color: var(--muted); font-size: 0.93rem; }

/* ===== ABOUT SPLIT ===== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
  background: var(--surface); aspect-ratio: 4/4.5;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.about-badge-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 1.4rem 1.8rem; border-radius: 16px; text-align: center;
  box-shadow: 0 8px 32px rgba(79, 142, 247, 0.4);
}
.about-badge-float strong {
  display: block; font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 2rem; font-weight: 800;
}
.about-badge-float span { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-row {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  padding: 1.1rem 1.3rem; border-radius: 12px; transition: border-color 0.2s;
}
.feature-row:hover { border-color: rgba(79, 142, 247, 0.35); }
.feature-icon-sm {
  width: 36px; height: 36px; min-width: 36px; border-radius: 8px;
  background: rgba(79, 142, 247, 0.12);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.feature-text h5 { font-size: 0.95rem; font-weight: 700; }
.feature-text p { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }

/* ===== HOW IT WORKS ===== */
.steps-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; margin-top: 3.5rem;
}
.step {
  padding: 2.5rem 2rem; border: 1px solid var(--border);
  background: var(--surface); transition: background 0.3s, border-color 0.3s;
}
.step:first-child { border-radius: 16px 0 0 16px; }
.step:last-child { border-radius: 0 16px 16px 0; }
.step:hover { background: rgba(13, 22, 40, 0.9); border-color: rgba(79, 142, 247, 0.35); }
.step-num {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(79, 142, 247, 0.18); letter-spacing: -2px; line-height: 1; margin-bottom: 0.8rem;
}
.step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(79, 142, 247, 0.3); }
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; }
.testi-card p { color: var(--muted); font-size: 0.95rem; font-style: italic; line-height: 1.75; }
.testi-author { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.9rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-weight: 800; font-size: 0.95rem; color: #fff;
}
.author-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.author-info span { font-size: 0.8rem; color: var(--muted); }

/* ===== NEWSLETTER ===== */
#newsletter {
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.08), rgba(123, 92, 250, 0.08));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5rem 6%; text-align: center;
}
#newsletter h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
#newsletter p { color: var(--muted); margin-top: 0.8rem; }
.subscribe-form {
  display: flex; gap: 0.8rem; max-width: 480px;
  margin: 2rem auto 0; flex-wrap: wrap; justify-content: center;
}
.subscribe-form input {
  flex: 1; min-width: 220px; padding: 0.8rem 1.2rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
}
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form input:focus { border-color: var(--accent); }

/* ===== FOOTER ===== */
footer { background: var(--bg2); padding: 4rem 6% 2.5rem; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 0.8rem; max-width: 280px; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: border-color 0.2s, background 0.2s; cursor: pointer;
}
.social-btn:hover { border-color: var(--accent); background: rgba(79, 142, 247, 0.1); }
.footer-col h5 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s; cursor: pointer;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.83rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--bg2); padding: 7rem 6% 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -1.5px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { color: var(--muted); max-width: 600px; margin-top: 1rem; font-size: 1.05rem; }

/* ===== TEAM ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem; margin-top: 3rem;
}
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-5px); border-color: rgba(79, 142, 247, 0.35); }
.team-avatar { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-info { padding: 1.4rem; }
.team-info h4 { font-size: 1.05rem; font-weight: 700; }
.team-info .role { font-size: 0.85rem; color: var(--accent); margin-top: 0.2rem; }
.team-info p { font-size: 0.87rem; color: var(--muted); margin-top: 0.7rem; line-height: 1.6; }

/* ===== VALUES ===== */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.value-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.8rem; transition: border-color 0.3s;
}
.value-card:hover { border-color: rgba(79, 142, 247, 0.35); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.9rem; }
.value-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { color: var(--muted); font-size: 0.9rem; }

/* ===== PRO SERVICES ===== */
.pro-services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.pro-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.pro-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.3s;
}
.pro-card:hover { transform: translateY(-6px); border-color: rgba(79, 142, 247, 0.4); box-shadow: 0 20px 50px rgba(79, 142, 247, 0.12); }
.pro-card:hover::after { opacity: 1; }
.pro-card-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.5rem;
}
.pro-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.7rem; }
.pro-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.2rem; }
.pro-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pro-card ul li {
  font-size: 0.88rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.pro-card ul li::before { content: '✓'; color: var(--accent3); font-weight: 700; }
.pricing-badge {
  display: inline-block; margin-top: 1.3rem;
  background: rgba(79, 142, 247, 0.1); border: 1px solid rgba(79, 142, 247, 0.2);
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.78rem; color: var(--accent); font-weight: 600; letter-spacing: 0.5px;
}

/* ===== CAREERS ===== */
.jobs-grid { display: grid; gap: 1.2rem; margin-top: 3rem; }
.job-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.8rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  transition: border-color 0.3s, transform 0.3s; cursor: pointer; flex-wrap: wrap;
}
.job-card:hover { border-color: rgba(79, 142, 247, 0.4); transform: translateX(4px); }
.job-dept {
  width: 48px; height: 48px; min-width: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.job-info { flex: 1; min-width: 200px; }
.job-info h4 { font-size: 1.05rem; font-weight: 700; }
.job-info p { font-size: 0.88rem; color: var(--muted); margin-top: 0.2rem; }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.6rem; }
.job-tag {
  background: rgba(79, 142, 247, 0.1); border: 1px solid rgba(79, 142, 247, 0.2);
  padding: 0.2rem 0.65rem; border-radius: 50px;
  font-size: 0.75rem; color: var(--accent); font-weight: 600;
}
.apply-btn {
  background: transparent; border: 1px solid var(--border);
  padding: 0.5rem 1.2rem; border-radius: 8px;
  color: var(--text); font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 0.82rem;
  font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.apply-btn:hover { border-color: var(--accent); background: rgba(79, 142, 247, 0.08); }
.perks-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}
.perk-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem; text-align: center;
}
.perk-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.perk-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.perk-card p { font-size: 0.85rem; color: var(--muted); }

/* ===== BLOGS ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(79, 142, 247, 0.35); }
.blog-thumb {
  height: 180px; display: flex; align-items: center;
  justify-content: center; font-size: 3.5rem; position: relative;
}
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(79, 142, 247, 0.15); border: 1px solid rgba(79, 142, 247, 0.3);
  padding: 0.2rem 0.65rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.8px; text-transform: uppercase;
}
.blog-body { padding: 1.6rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.8rem; }
.blog-body h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.6rem; }
.blog-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.blog-read {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem;
  font-size: 0.85rem; font-weight: 600; color: var(--accent); cursor: pointer;
}
.blog-read:hover { color: var(--accent2); }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.6rem;
  display: flex; gap: 1rem; align-items: flex-start; transition: border-color 0.2s;
}
.contact-block:hover { border-color: rgba(79, 142, 247, 0.35); }
.contact-block-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: rgba(79, 142, 247, 0.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-block h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.contact-block p, .contact-block a { color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.contact-block a:hover { color: var(--accent); }
.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.5rem;
}
.contact-form h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--muted); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem;
  color: var(--text); font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface); }
.contact-form .btn-primary { width: 100%; text-align: center; }
.map-placeholder {
  margin-top: 1.5rem; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  height: 200px; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 0.5rem;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p { color: var(--muted); font-size: 0.9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge-float { right: 1rem; bottom: 1rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .steps-row { gap: 1rem; }
  .step, .step:first-child, .step:last-child { border-radius: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}


/* ── Field inline error messages ── */
.field-error {
  display: none;
  color: #f87171;
  font-size: 0.82rem;
  margin: 0.35rem 0 0;
  font-weight: 500;
  line-height: 1.4;
}
/* ── Phone field wrapper ── */
.phone-field-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg2);
  overflow: hidden;
  transition: border-color 0.2s;
}
.phone-field-wrap:focus-within { border-color: var(--accent); }
.phone-country-select {
  border: none;
  background: transparent;
  padding: 0.75rem 0.4rem 0.75rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  outline: none;
  min-width: 140px;
  max-width: 165px;
  border-right: 1px solid var(--border);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
.phone-country-select option { background: var(--surface); }
.phone-isd {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 700;
  padding: 0 0.6rem;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  background: transparent;
  min-width: 42px;
}
.phone-number-input {
  flex: 1;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  min-width: 0;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
.phone-number-input::placeholder { color: var(--muted); }
/* Override form-group input styles for phone wrapper child */
.phone-field-wrap input {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.75rem 0.9rem !important;
}

/* ── Modal & Phone field styles ── */
/* ── Job Apply Modal ── */
.apply-modal-overlay{display:none;position:fixed;inset:0;z-index:500;background:rgba(0,0,0,.65);backdrop-filter:blur(6px);align-items:center;justify-content:center}
.apply-modal-overlay.open{display:flex}
.apply-modal{background:var(--surface);border:1px solid var(--border);border-radius:20px;padding:2.5rem;width:min(480px,92vw);position:relative;box-shadow:0 24px 64px rgba(0,0,0,.5)}
.apply-modal h3{font-size:1.4rem;font-weight:800;margin-bottom:.3rem}
.apply-role-label{font-size:.88rem;color:var(--accent);font-weight:600;margin-bottom:1.6rem;letter-spacing:.3px}
.apply-modal-close{position:absolute;top:1.2rem;right:1.4rem;background:none;border:none;cursor:pointer;font-size:1.5rem;color:var(--muted);line-height:1;transition:color .2s}
.apply-modal-close:hover{color:var(--text)}
.apply-success{display:none;text-align:center;padding:1rem 0}
.apply-success-icon{font-size:3.5rem;margin-bottom:1rem}
.apply-success h4{font-size:1.3rem;font-weight:800;margin-bottom:.6rem}
.apply-success p{color:var(--muted);font-size:.95rem;line-height:1.7}
/* ── Quote Modal ── */
.quote-modal-overlay{display:none;position:fixed;inset:0;z-index:500;background:rgba(0,0,0,.65);backdrop-filter:blur(6px);align-items:center;justify-content:center}
.quote-modal-overlay.open{display:flex}
.quote-modal{background:var(--surface);border:1px solid var(--border);border-radius:20px;padding:2.5rem;width:min(500px,92vw);position:relative;box-shadow:0 24px 64px rgba(0,0,0,.5)}
.quote-modal h3{font-size:1.4rem;font-weight:800;margin-bottom:.3rem}
.quote-service-label{font-size:.88rem;color:var(--accent);font-weight:600;margin-bottom:1.6rem;letter-spacing:.3px}
.quote-modal-close{position:absolute;top:1.2rem;right:1.4rem;background:none;border:none;cursor:pointer;font-size:1.5rem;color:var(--muted);line-height:1;transition:color .2s}
.quote-modal-close:hover{color:var(--text)}
.quote-success{display:none;text-align:center;padding:1rem 0}
.quote-success-icon{font-size:3.5rem;margin-bottom:1rem}
.quote-success h4{font-size:1.3rem;font-weight:800;margin-bottom:.6rem}
.quote-success p{color:var(--muted);font-size:.95rem;line-height:1.7}
.pricing-badge{cursor:pointer;transition:background .2s,border-color .2s,color .2s}
.pricing-badge:hover{background:rgba(79,142,247,.25);border-color:var(--accent);color:var(--text)}

/* ── Contact page footer: only 3 columns (no Services col) ── */
#page-contact .footer-top {
  grid-template-columns: 2fr 1fr 1fr;
}