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

:root {
  --bg:        #050505;
  --surface:   #111827;
  --navy:      #0F2A66;
  --cyan:      #1297A8;
  --secondary: #94A3B8;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* ── Layout helpers ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6rem 0; }

/* ── Grid background ── */
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* ── Glass card ── */
.glass {
  background: rgba(17,24,39,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(135deg, #0F2A66, #1297A8);
  box-shadow: 0 2px 20px rgba(18,151,168,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(18,151,168,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: rgba(18,151,168,0.5);
  background: rgba(18,151,168,0.07);
}

/* ── Section tag (editorial style) ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ── Icon box ── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(18,151,168,0.08);
  border: 1px solid rgba(18,151,168,0.15);
  flex-shrink: 0;
}

/* ── Service card ── */
.card-service {
  background: rgba(17,24,39,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(18,151,168,0.2);
}

/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}
#site-header.scrolled {
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
#site-header.light-hero {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo img { height: 36px; width: auto; object-fit: contain; transition: opacity 0.3s; }
.site-logo .logo-dark { display: none; }
.site-logo .logo-light { display: block; }
#site-header.light-hero .site-logo .logo-dark  { display: block; }
#site-header.light-hero .site-logo .logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.04); }

/* Light hero nav link colors */
#site-header.light-hero .nav-links a { color: #475569; }
#site-header.light-hero .nav-links a:hover,
#site-header.light-hero .nav-links a.active { color: #0F2A66; background: rgba(15,42,102,0.05); }

.nav-cta {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #0F2A66, #1297A8);
  box-shadow: 0 2px 16px rgba(15,42,102,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(15,42,102,0.4); color: #fff; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--secondary); }
#site-header.light-hero .nav-hamburger { color: #0F2A66; }

/* Mobile nav */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu .nav-links { flex-direction: column; align-items: stretch; gap: 0.25rem; }
#mobile-menu .nav-links a { padding: 1rem; font-size: 1rem; color: var(--secondary); border-radius: 0.75rem; }
#mobile-menu .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.04); }
#mobile-menu .nav-cta { width: 100%; text-align: center; justify-content: center; padding: 1rem; font-size: 1rem; margin-top: 1.5rem; display: flex; }

@media (min-width: 1024px) { .nav-hamburger { display: none !important; } }
@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════
   HERO (light background)
═══════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, #F0F4FF 0%, #E8F0FE 40%, #EDF6F8 100%);
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,42,102,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,42,102,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(1px);
  animation: orbPulse var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.93); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.07); }
}

#hero .hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 7rem 6rem 3rem;
  max-width: 860px;
}
@media (max-width: 1023px) { #hero .hero-content { padding: 7rem 2rem 3rem; } }

.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0F2A66;
  margin-bottom: 1.75rem;
}

.hero-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #0A1628;
  margin-bottom: 1.25rem;
}
.hero-heading .accent {
  background: linear-gradient(105deg, #0F2A66 0%, #1297A8 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 28rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-ctas .btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #0F2A66;
  border: 1.5px solid rgba(15,42,102,0.2);
  background: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.hero-ctas .btn-outline-light:hover { border-color: #1297A8; color: #1297A8; }

/* Trust banner */
.trust-banner {
  position: relative;
  overflow: hidden;
  background: #EEF2FA;
  border-top: 1px solid rgba(15,42,102,0.1);
  z-index: 1;
}
.trust-banner-inner {
  display: flex;
  padding: 1.25rem 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.trust-banner-inner:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.75rem;
  flex-shrink: 0;
}
.trust-item .ti-icon {
  width: 1.5rem; height: 1.5rem;
  border-radius: 0.375rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,151,168,0.12);
  border: 1px solid rgba(18,151,168,0.2);
  flex-shrink: 0;
}
.trust-item span { font-size: 0.75rem; font-weight: 500; color: #475569; letter-spacing: 0.03em; }
.trust-item .divider { margin-left: 1.25rem; width: 1px; height: 0.75rem; background: rgba(15,42,102,0.15); flex-shrink: 0; }
.trust-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 5rem; background: linear-gradient(90deg, #EEF2FA, transparent); z-index: 1; pointer-events: none; }
.trust-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 5rem; background: linear-gradient(-90deg, #EEF2FA, transparent); z-index: 1; pointer-events: none; }

/* ═══════════════════════════
   DARK SECTIONS (general)
═══════════════════════════ */
.dark-section {
  background: var(--bg);
  position: relative;
}
.dark-section-alt {
  background: rgba(10,12,18,0.97);
  position: relative;
}

.section-header { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.03em;
}
.section-header p { color: var(--secondary); font-size: 1rem; line-height: 1.7; }
.gradient-text {
  background: linear-gradient(105deg, #5BA4E0 0%, #1297A8 55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════
   SERVICES GRID
═══════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.service-card { background: rgba(17,24,39,0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: 1rem; padding: 1.75rem; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); border-color: rgba(18,151,168,0.2); }
.service-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: #fff; margin: 1rem 0 0.5rem; }
.service-card p { color: var(--secondary); font-size: 0.875rem; line-height: 1.65; }
.service-card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.375rem; }
.service-card ul li { font-size: 0.8125rem; color: #64748B; display: flex; align-items: center; gap: 0.5rem; }
.service-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ═══════════════════════════
   PROCESS STEPS
═══════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.process-step { position: relative; background: rgba(17,24,39,0.5); border: 1px solid rgba(255,255,255,0.06); border-radius: 1rem; padding: 1.75rem; }
.step-number { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; margin-bottom: 1rem; }
.process-step h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.process-step p { color: var(--secondary); font-size: 0.875rem; line-height: 1.65; }

/* ═══════════════════════════
   WHY CHOOSE US
═══════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.why-card { background: rgba(17,24,39,0.5); border: 1px solid rgba(255,255,255,0.06); border-radius: 1rem; padding: 1.75rem; transition: border-color 0.3s; }
.why-card:hover { border-color: rgba(18,151,168,0.2); }
.why-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: #fff; margin: 0.875rem 0 0.5rem; }
.why-card p { color: var(--secondary); font-size: 0.875rem; line-height: 1.65; }

/* ═══════════════════════════
   TECHNOLOGIES
═══════════════════════════ */
.tech-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.tech-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  background: rgba(17,24,39,0.7); border: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8125rem; font-weight: 500; color: var(--secondary);
  transition: border-color 0.2s, color 0.2s;
}
.tech-badge:hover { border-color: rgba(18,151,168,0.3); color: #fff; }

/* ═══════════════════════════
   CTA BANNER
═══════════════════════════ */
.cta-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(15,42,102,0.25) 0%, transparent 100%);
}
.cta-section h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: #fff; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p { color: var(--secondary); margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; position: relative; z-index: 1; }

/* ═══════════════════════════
   CONTACT
═══════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 2.5rem; align-items: start; }
@media (max-width: 1023px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border-radius: 1rem;
  background: rgba(17,24,39,0.7); border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s;
  text-decoration: none;
}
.contact-card:hover { transform: translateX(4px); }
.contact-card .label { font-size: 0.6875rem; color: var(--secondary); margin-bottom: 0.125rem; }
.contact-card .value { font-size: 0.875rem; font-weight: 500; color: #fff; transition: color 0.2s; }
.contact-card:hover .value { color: var(--cyan); }
.contact-card .desc  { font-size: 0.75rem; color: var(--secondary); }

.contact-form-wrap { background: rgba(17,24,39,0.55); backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.06); border-radius: 1.5rem; padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.75rem; font-weight: 500; color: var(--secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-family: var(--font-body); font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(18,151,168,0.5); box-shadow: 0 0 0 3px rgba(18,151,168,0.1); }
.form-group select { background-color: #111827; appearance: none; }
.form-group textarea { resize: none; }
.form-group .error { font-size: 0.75rem; color: #f87171; margin-top: 0.25rem; }
.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error { border-color: rgba(248,113,113,0.5); }
.form-submit { width: 100%; padding: 0.875rem; font-size: 1rem; }
.form-note { font-size: 0.75rem; color: var(--secondary); text-align: center; margin-top: 0.75rem; }

.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 1rem;
}
.form-success.show { display: flex; }
#contact-form.hidden { display: none; }
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: #fff; margin: 1rem 0 0.5rem; }
.form-success p { color: var(--secondary); }
.success-icon { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(18,151,168,0.15); display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
#site-footer { position: relative; border-top: 1px solid rgba(255,255,255,0.05); background: var(--bg); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { color: var(--secondary); font-size: 0.875rem; line-height: 1.7; margin: 1rem 0 1.25rem; max-width: 18rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-link {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-link:hover { color: #fff; border-color: rgba(18,151,168,0.4); background: rgba(18,151,168,0.1); }

.footer-col h4 { font-family: var(--font-head); font-weight: 600; font-size: 0.875rem; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a { font-size: 0.875rem; color: var(--secondary); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cyan); }

.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item .fc-label { font-size: 0.6875rem; color: rgba(148,163,184,0.6); }
.footer-contact-item .fc-value { font-size: 0.875rem; color: var(--secondary); }
.footer-contact-item a { transition: color 0.2s; }
.footer-contact-item a:hover .fc-value { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.75rem; color: var(--secondary); }
.footer-bottom .accent { color: var(--cyan); }
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a { font-size: 0.75rem; color: var(--secondary); transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ═══════════════════════════
   PAGE HERO BANNERS
═══════════════════════════ */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset-x: 0; top: 0;
  height: 60%;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(15,42,102,0.2) 0%, transparent 100%);
  pointer-events: none;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; color: #fff; margin: 0.75rem 0 1rem; letter-spacing: -0.035em; }
.page-hero p { color: var(--secondary); max-width: 36rem; margin: 0 auto; }

/* ═══════════════════════════
   PROJECTS
═══════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.project-card { border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; transition: transform 0.3s; }
.project-card:hover { transform: translateY(-5px); }
.project-card .pc-category { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.625rem; border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--secondary); display: inline-block; }
.project-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: #fff; margin: 0.75rem 0 0.5rem; line-height: 1.3; }
.project-card p { color: var(--secondary); font-size: 0.875rem; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.75rem; }
.pc-tag { font-size: 0.6875rem; padding: 0.125rem 0.5rem; border-radius: 0.25rem; background: rgba(255,255,255,0.05); color: #64748B; font-family: monospace; }
.pc-result { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; color: var(--cyan); }
.pc-result::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  .services-grid, .why-grid, .process-steps { grid-template-columns: 1fr; }
}
