:root {
  --brand-blue: #0A1128; /* Deep rich space blue */
  --brand-blue-light: #1A2542;
  --brand-orange: #FF6A00; /* Vivid tech orange */
  --bg-light: #FAFAFA;
  --bg-offset: #F3F4F6;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 10px 30px rgba(255, 106, 0, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; background-color: var(--bg-light); }
a { text-decoration: none; color: inherit; }
li { list-style: none; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.text-blue { color: var(--brand-blue); }
.text-orange { color: var(--brand-orange); }
.text-muted { color: var(--text-muted); }
.font-display { font-family: var(--font-display); }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gap-8 { gap: 2rem; }
.gap-4 { gap: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Navigation - Floating Pill */
.glass-nav { 
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); 
  width: 90%; max-width: 1200px; border-radius: 50px;
  z-index: 100; padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.7); 
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-nav .container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 100%; padding: 0; margin: 0; }
.nav-links { display: flex; gap: 2.5rem; font-weight: 600; color: var(--brand-blue); font-size: 1rem; }
.nav-menu-wrapper { display: flex; align-items: center; gap: 1.5rem; }
.menu-toggle { display: none; }
.nav-links a { transition: all 0.3s ease; position: relative; }
.nav-links a:hover, .nav-links a.active-link { color: var(--brand-orange); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--brand-orange); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }

.btn-contact { background: var(--brand-orange); color: white; padding: 0.7rem 2rem; border-radius: 50px; font-weight: 700; transition: all 0.3s; box-shadow: var(--shadow-glow); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.9rem;}
.btn-contact:hover { background: #e05d00; transform: translateY(-2px) scale(1.02); box-shadow: 0 15px 35px rgba(255, 106, 0, 0.4); }

/* Hero Section */
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: linear-gradient(to right, rgba(250, 250, 250, 0.95) 10%, rgba(250, 250, 250, 0.4) 100%), url('../images/drone.jpg') center/cover no-repeat; }
.hero-section { position: relative; min-height: 100vh; display: flex; flex-direction: column; padding-top: 150px; overflow: hidden; justify-content: space-between; }
.hero-grid { display: grid; grid-template-columns: 1fr 450px; gap: 4rem; width: 100%; align-items: center; position: relative; z-index: 10; flex-grow: 1; padding-bottom: 4rem;}
.hero-content { max-width: 600px; padding-top: 40px; }
.hero-title { font-size: 4.5rem; line-height: 1.05; margin-bottom: 1.2rem; font-family: var(--font-display); font-weight: 800; color: var(--brand-blue); letter-spacing: -1.5px;}
.hero-subtitle { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 2.5rem; font-weight: 500; }
.btn-primary { background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA842 100%); color: white; font-weight: 700; padding: 1.1rem 2.8rem; border-radius: 50px; border: none; cursor: pointer; transition: all 0.3s; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(255, 106, 0, 0.3); }

.drone-illustration { position: absolute; top: 10%; right: 35%; width: 450px; height: auto; z-index: 5; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.2)); }
.styled-drone { width: 100%; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); border: 2px solid rgba(255,255,255,0.8); object-fit: cover; aspect-ratio: 4/3; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } }

/* Form block */
.inquiry-form-wrapper { 
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem; border-radius: 20px; 
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.6); 
  position: relative; z-index: 30; 
}
.inquiry-form-wrapper h3 { font-size: 2rem; color: var(--brand-blue); font-family: var(--font-display); margin-bottom: 0.5rem; font-weight: 800; }
.inquiry-form-wrapper p { color: var(--text-muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-input { width: 100%; padding: 1rem 1.2rem; background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.1); border-radius: 10px; font-family: var(--font-body); color: var(--brand-blue); font-size: 1rem; outline: none; transition: all 0.3s; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.form-input:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1); }
.btn-submit { background: var(--brand-blue); color: white; font-weight: 700; padding: 1rem 2rem; border-radius: 10px; border: none; cursor: pointer; transition: all 0.3s; text-transform: uppercase; box-shadow: var(--shadow-sm); }
.btn-submit:hover { background: var(--brand-orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Features Strip Overhauled */
.features-bottom-strip { 
  position: relative;
  width: 100%; 
  padding: 3rem 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(250,250,250,0.9) 100%); 
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
  z-index: 20; 
}
.features-list { display: flex; justify-content: space-around; max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.feature-item { display: flex; align-items: center; gap: 1.2rem; }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 100%); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: transform 0.3s ease; }
.feature-item:hover .feature-icon { transform: scale(1.1) rotate(5deg); background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA842 100%);}
.feature-icon img, .feature-icon svg { width: 28px; height: 28px; color: white; fill: white; }
.feature-text { font-family: var(--font-display); font-weight: 700; color: var(--brand-blue); line-height: 1.3; font-size: 1.1rem; }

/* Page Headers (for other pages) */
.page-header { padding: 180px 0 80px; background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat; text-align: center; }
.page-header h1 { font-size: 3.5rem; color: var(--brand-blue); font-family: var(--font-display); margin-bottom: 1rem; }

/* Content Sections */
.section-padding { padding: 100px 0; }
.bg-offset { background-color: var(--bg-offset); }
.section-title { font-size: 3rem; font-family: var(--font-display); color: var(--brand-blue); margin-bottom: 1.5rem; text-align: center; font-weight: 800; letter-spacing: -1px;}

/* Services Grid */
.service-card { background: white; border-radius: 20px; padding: 3rem; box-shadow: var(--shadow-sm); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(255, 106, 0, 0.1); }
.service-card.highlight { grid-column: span 2; border: 2px solid rgba(255, 106, 0, 0.2); background: linear-gradient(135deg, white 0%, #FAFAFA 100%); }
.service-icon-large { font-size: 3.5rem; color: var(--brand-orange); margin-bottom: 2rem; display: inline-block; transition: transform 0.3s; }
.service-card:hover .service-icon-large { transform: scale(1.1); }
.service-card h3 { font-size: 1.8rem; color: var(--brand-blue); font-family: var(--font-display); margin-bottom: 1rem; font-weight: 800; }
.highlight h3 { font-size: 2.5rem; }

/* Contact/Projects layouts */
.project-card { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: white; transition: all 0.3s; cursor: pointer; }
.project-card:hover { transform: translateY(-5px); }
.project-img { width: 100%; height: 250px; object-fit: cover; }
.project-info { padding: 1.5rem; text-align: justify;}
.detail-banner { border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); margin-bottom: 3rem; }
.detail-banner img { width: 100%; height: 400px; object-fit: cover; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--brand-blue); }

.stats-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; padding: 4rem 0; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.stat-number { font-size: 4rem; font-family: var(--font-display); font-weight: 800; color: var(--brand-orange); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-weight: 600; color: var(--brand-blue); font-size: 1.1rem; }

/* Cinematic Footer */
footer { background: var(--brand-blue); color: white; padding: 100px 0 0; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; position: relative; z-index: 10; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 0; }
.footer-title { color: white; font-family: var(--font-display); margin-bottom: 1.5rem; font-size: 1.3rem; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { position: relative; color: #94A3B8; transition: all 0.3s ease; display: inline-block; }
.footer-links a:hover { color: var(--brand-orange); transform: translateX(8px); }

/* Newsletter Form */
.footer-newsletter input { width: 100%; padding: 1rem 1.2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: white; margin-bottom: 1rem; outline: none; transition: border 0.3s, background 0.3s; font-family: var(--font-body); }
.footer-newsletter input:focus { border-color: var(--brand-orange); background: rgba(255,255,255,0.05); }
.footer-newsletter button { width: 100%; background: var(--brand-orange); color: white; padding: 1rem; border-radius: 10px; border: none; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 15px rgba(255,106,0,0.2); }
.footer-newsletter button:hover { background: white; color: var(--brand-orange); transform: translateY(-2px); }

/* Watermark */
.footer-watermark {
  font-size: 14vw;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.02);
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
.footer-bottom { position: relative; z-index: 10; padding: 2rem 0; font-size: 0.95rem; color: #475569; display: flex; justify-content: space-between; align-items: center; }

/* --- DARK THEME OVERRIDES --- */
body.dark-theme { background: #050814; color: #F8FAFC; }
.dark-theme .text-blue { color: #F1F5F9; }
.dark-theme .text-muted { color: #94A3B8; }
.dark-theme .bg-offset { background-color: #0A1128; }
.dark-theme .section-title { color: white; }

.dark-theme .service-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 40px rgba(0,0,0,0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.dark-theme .service-card h3 { color: white; font-weight: 700; }
.dark-theme .service-card:hover { border-color: rgba(255,106,0,0.3); background: rgba(255,255,255,0.04); }
.dark-theme .service-card.highlight { background: linear-gradient(135deg, rgba(255,106,0,0.05) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid rgba(255,106,0,0.2); }

.dark-theme .features-bottom-strip { background: linear-gradient(to right, rgba(10,17,40,0.95) 0%, rgba(5,8,20,0.85) 100%); border-top: 1px solid rgba(255,255,255,0.05); }
.dark-theme .feature-item { padding: 40px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(20px); transform: translateY(-30px); }
.dark-theme .inquiry-form-wrapper { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.dark-theme .inquiry-form-wrapper h3 { color: white; }
.dark-theme .inquiry-form-wrapper p { color: #94A3B8; }
.dark-theme .form-input, .dark-theme .form-select { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); color: white; }
.dark-theme .form-input:focus, .dark-theme .form-select:focus { border-color: var(--brand-orange); }

.dark-theme .glass-nav { background: rgba(5,8,20,0.7); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.dark-theme .nav-links a { color: #E2E8F0; }
.dark-theme .nav-links a:hover, .dark-theme .nav-links a.active-link { color: var(--brand-orange); }
.dark-theme .logo h1 { color: white; }

.dark-theme .stat-label { color: #94A3B8; }
.dark-theme .stats-container { border-color: rgba(255,255,255,0.05); }

.dark-theme .hero-title { color: white; }
.dark-theme .hero-bg { background: linear-gradient(to right, rgba(5, 8, 20, 0.98) 10%, rgba(5, 8, 20, 0.6) 100%), url('../images/drone.jpg') center/cover no-repeat; }

/* Sticky Scroll Layout Styles */
.sticky-wrapper { display: flex; gap: 4rem; position: relative; align-items: flex-start; }
.sticky-sidebar { position: sticky; top: 150px; width: 35%; padding-right: 2rem; }
.scroll-content { width: 65%; display: flex; flex-direction: column; gap: 2rem; }
@media (max-width: 1024px) {
  .sticky-wrapper { flex-direction: column; }
  .sticky-sidebar { position: static; width: 100%; padding-right: 0; margin-bottom: 3rem; text-align: center; }
  .scroll-content { width: 100%; }
}
@media (max-width: 1024px) {
  .hero-section { min-height: auto; padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; text-align: center; }
  .hero-title { font-size: 3.5rem; }
  .hero-content { margin: 0 auto; padding-top: 2rem; }
  .drone-illustration { position: relative; top: 0; right: 0; margin: 0 auto 2rem; width: 100%; max-width: 400px; display: block; animation: none; filter: none; }
  
  .features-bottom-strip { padding: 2rem 0; }
  .features-list { gap: 2rem; flex-wrap: wrap; justify-content: center; padding: 0 20px;}
  
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .service-card.highlight { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  /* Convert nav into compact mobile header with toggle menu */
  .glass-nav { position: fixed; top: 0; left: 0; transform: none; width: 100%; max-width: 100%; border-radius: 0; padding: 0.9rem 0; background: rgba(255,255,255,0.98); border: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .glass-nav .container { position: relative; flex-direction: row; gap: 0.75rem; padding: 0 20px; }
  .menu-toggle { display: block !important; font-size: 1.8rem; cursor: pointer; color: var(--brand-blue); line-height: 1; }
  .nav-menu-wrapper {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  }
  .nav-menu-wrapper.open { display: flex; }
  .nav-links { width: 100%; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .nav-links a { display: block; width: 100%; padding: 0.25rem 0; }
  .btn-contact { width: 100%; text-align: center; }
  
  .hero-section { padding-top: 130px; }
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .btn-primary { padding: 1rem 2rem; font-size: 1rem; }
  
  .grid-cols-2, .grid-cols-3 { grid-template-columns: 1fr; }
  .service-card.highlight { grid-column: span 1; }
  
  .stats-container { grid-template-columns: 1fr; gap: 3rem; }
  .stat-number { font-size: 3.5rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .footer-grid .footer-title { margin-bottom: 1rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom > div:last-child { justify-content: center; flex-wrap: wrap; }
  .footer-watermark { font-size: 22vw; bottom: 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .inquiry-form-wrapper { padding: 1.5rem; border-radius: 12px; }
  .inquiry-form-wrapper h3 { font-size: 1.5rem; }
  
  .features-list { flex-direction: column; align-items: stretch; }
  .feature-item { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: var(--shadow-sm); justify-content: flex-start; }
  .footer-bottom > div:last-child { flex-direction: column; gap: 0.5rem !important; }
  
  form > div[style*="display: flex"] { flex-direction: column; gap: 10px; }
  .btn-submit { width: 100%; }
}

/* ========== HOME PAGE STYLES ========== */

.home-service-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.home-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-orange), #FFA842);
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 44px rgba(15, 23, 42, 0.12);
}

.service-icon-modern {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA842 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 12px 20px rgba(255, 106, 0, 0.26);
  margin-bottom: 1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.value-highlight {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.07);
  padding: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.value-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.value-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-orange), #FFA842);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 10px 18px rgba(255, 106, 0, 0.26);
  margin-bottom: 0.8rem;
}

.stats-shell {
  background: #fff;
  border: none;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  display: inline-block;
}

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

.stat-card strong {
  color: var(--brand-orange);
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}

.stat-card span {
  color: #64748B;
  font-size: 0.95rem;
  font-weight: 500;
}

.home-cta-premium {
  margin-top: 1.5rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #0A1128 0%, #1A2542 65%, #273D73 100%);
  color: #fff;
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 22px 40px rgba(10, 17, 40, 0.3);
}

.home-cta-premium p {
  color: #CBD5E1;
  margin: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA842 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.28);
  margin-bottom: 0.8rem;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.testimonial-stars {
  color: var(--brand-orange);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), #FFA842);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.author-info h4 {
  margin: 0;
  color: #0A1128;
  font-size: 0.95rem;
  font-weight: 700;
}

.author-info p {
  margin: 0;
  color: #64748B;
  font-size: 0.85rem;
}

/* Client Logos */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.client-logo {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.3s ease;
}

.client-logo:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.12);
}

.client-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A1128;
  text-align: center;
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--brand-orange);
  box-shadow: 0 16px 32px rgba(255, 106, 0, 0.12);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0A1128;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-orange), #FFA842);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #475569;
  line-height: 1.7;
}

/* HOME PAGE RESPONSIVE */
@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .stats-shell,
  .home-cta-premium {
    padding: 1.4rem;
  }

  .home-cta-premium {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-card strong {
    font-size: 1.8rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1.2rem;
  }
}

/* ========== ABOUT PAGE STYLES ========== */

    .about-note {
      max-width: 780px;
      margin: 0.9rem auto 0;
      color: #475569;
      font-size: 1.05rem;
    }

    .about-kpi-strip {
      margin-top: -46px;
      position: relative;
      z-index: 3;
    }

    .about-kpi-card {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 18px;
      box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .about-kpi-card strong {
      color: var(--brand-orange);
      font-family: var(--font-display);
      font-size: 2rem;
      line-height: 1;
    }

    .about-kpi-card span {
      color: #64748B;
      font-size: 0.95rem;
    }

    .story-shell {
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 28px 50px rgba(15, 23, 42, 0.12);
      transition: all 0.3s ease;
    }

    .story-shell:hover {
      box-shadow: 0 36px 60px rgba(15, 23, 42, 0.16);
      border-color: rgba(255, 106, 0, 0.2);
    }

    .story-shell img {
      width: 100%;
      height: 100%;
      min-height: 450px;
      object-fit: cover;
      display: block;
    }

    .story-copy {
      padding: 3rem 2.5rem;
      background: #fff;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .story-chip {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(255, 106, 0, 0.12);
      color: var(--brand-orange);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 0.45rem 1rem;
      margin-bottom: 1.2rem;
      text-transform: uppercase;
      width: fit-content;
    }

    .story-copy h3 {
      font-size: 2.2rem !important;
      line-height: 1.25 !important;
      margin-bottom: 1rem !important;
      color: var(--brand-blue) !important;
    }

    .story-copy > p {
      font-size: 1.05rem !important;
      color: #475569 !important;
      line-height: 1.8 !important;
      margin-bottom: 1.5rem !important;
    }

    .story-points {
      margin: 0;
      display: grid;
      gap: 0.8rem;
      list-style: none;
    }

    .story-points li {
      color: #475569;
      padding-left: 1.4rem;
      position: relative;
      font-size: 1rem;
      line-height: 1.6;
    }

    .story-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.65rem;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-orange);
    }

    .story-copy .btn-primary {
      margin-top: 1.5rem;
      align-self: flex-start;
    }

    .process-shell {
      margin-top: 3rem;
      border: 1px solid rgba(15, 23, 42, 0.07);
      border-radius: 24px;
      background: linear-gradient(135deg, #fff 0%, #F8FAFC 100%);
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
      padding: 2.5rem;
    }

    .process-shell h3 {
      font-size: 2rem !important;
      line-height: 1.3 !important;
      margin-bottom: 1.5rem !important;
      color: var(--brand-blue) !important;
    }

    .grid-cols-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .process-step {
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 18px;
      background: #fff;
      padding: 1.6rem;
      height: 100%;
      transition: all 0.3s ease;
    }

    .process-step:hover {
      border-color: rgba(255, 106, 0, 0.15);
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }

    .process-step strong {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: linear-gradient(135deg, #0A1128 0%, #1A2542 100%);
      margin-bottom: 1rem;
      font-size: 1rem;
      box-shadow: 0 10px 20px rgba(10, 17, 40, 0.22);
    }

    .process-step h4 {
      font-size: 1.05rem !important;
      font-weight: 700 !important;
      margin-bottom: 0.5rem !important;
      color: var(--brand-blue) !important;
    }

    .process-step p {
      font-size: 0.95rem !important;
      line-height: 1.5 !important;
      color: #475569 !important;
      margin: 0 !important;
    }

    .value-card {
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 20px;
      box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
      padding: 2rem;
      transition: all 0.3s ease;
      height: 100%;
    }

    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 28px 48px rgba(15, 23, 42, 0.16);
      border-color: rgba(255, 106, 0, 0.15);
    }

    .value-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--brand-orange), #FFA842);
      color: #fff;
      font-size: 1.4rem;
      box-shadow: 0 14px 24px rgba(255, 106, 0, 0.32);
      margin-bottom: 1.2rem;
    }

    .value-card h3 {
      font-size: 1.35rem !important;
      line-height: 1.3 !important;
      margin-bottom: 0.7rem !important;
    }

    .value-card p {
      font-size: 1rem !important;
      line-height: 1.6 !important;
      color: #475569 !important;
    }

    .about-cta {
      margin-top: 2.2rem;
      border-radius: 22px;
      background: linear-gradient(135deg, #0A1128 0%, #1A2542 65%, #273D73 100%);
      color: #fff;
      padding: 2.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 22px 40px rgba(10, 17, 40, 0.3);
    }

    .about-cta p {
      color: #CBD5E1;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .about-kpi-strip {
        margin-top: 0;
      }

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

      .story-shell img {
        min-height: 350px;
      }

      .story-copy {
        padding: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .grid-cols-4 {
        grid-template-columns: 1fr;
      }

      .story-shell {
        grid-template-columns: 1fr;
      }

      .story-shell img {
        min-height: 280px;
      }

      .story-copy,
      .process-shell,
      .about-cta {
        padding: 1.5rem;
      }

      .story-copy h3 {
        font-size: 1.8rem !important;
      }

      .about-cta {
        flex-direction: column;
        align-items: flex-start;
      }

      .story-chip {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
      }
    }
  

/* ========== CAREER PAGE STYLES ========== */

    .grid-cols-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .career-hero-note {
      max-width: 760px;
      margin: 1rem auto 0;
      color: #475569;
      font-size: 1.1rem;
    }

    .career-highlights {
      margin-top: -40px;
      position: relative;
      z-index: 4;
    }

    .highlight-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(15, 23, 42, 0.05);
      border-radius: 18px;
      padding: 1.4rem;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .highlight-card strong {
      color: var(--brand-blue);
      font-family: var(--font-display);
      font-size: 1.35rem;
      line-height: 1;
      display: block;
    }

    .highlight-card span {
      color: #64748B;
      font-size: 0.95rem;
    }

    .highlight-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--brand-orange), #FFA842);
      color: white;
      font-size: 1.2rem;
      box-shadow: 0 12px 20px rgba(255, 106, 0, 0.24);
      flex-shrink: 0;
    }

    .role-card {
      background: #fff;
      border-radius: 20px;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 18px 35px rgba(15, 23, 42, 0.07);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .role-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--brand-orange), #FFA842);
    }

    .role-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
    }

    .role-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      background: rgba(255, 106, 0, 0.1);
      color: var(--brand-orange);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.3px;
      padding: 0.4rem 0.75rem;
      margin-bottom: 1rem;
    }

    .role-meta {
      color: #64748B;
      font-size: 0.95rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin: 1rem 0 1.2rem;
    }

    .role-link {
      color: var(--brand-blue);
      font-weight: 700;
      font-family: var(--font-display);
      transition: color 0.25s ease;
    }

    .role-link:hover {
      color: var(--brand-orange);
    }

    .hiring-flow {
      background: linear-gradient(135deg, #ffffff 0%, #FFF5EC 100%);
      border: 1px solid rgba(255, 106, 0, 0.15);
      border-radius: 24px;
      padding: 2.4rem;
      box-shadow: 0 20px 40px rgba(255, 106, 0, 0.08);
    }

    .step-card {
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 16px;
      padding: 1.25rem;
      height: 100%;
    }

    .step-badge {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #fff;
      background: var(--brand-blue);
      margin-bottom: 0.8rem;
    }

    .application-shell {
      background: #fff;
      border-radius: 24px;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 25px 45px rgba(15, 23, 42, 0.07);
      overflow: hidden;
    }

    .application-left {
      padding: 2.4rem;
      background: linear-gradient(160deg, #0A1128 0%, #1A2542 100%);
      color: #E2E8F0;
      height: 100%;
    }

    .application-left h3 {
      color: #fff;
      font-size: 1.7rem;
      font-family: var(--font-display);
      margin-bottom: 0.8rem;
    }

    .perk-list {
      margin-top: 1.5rem;
      display: grid;
      gap: 0.8rem;
    }

    .perk-list li {
      padding: 0.75rem 0.9rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 0.95rem;
    }

    .application-right {
      padding: 2.4rem;
    }

    .application-right h3 {
      font-size: 1.7rem;
      color: var(--brand-blue);
      font-family: var(--font-display);
      margin-bottom: 0.4rem;
    }

    .application-right p {
      color: #64748B;
      margin-bottom: 1.4rem;
    }

    @media (max-width: 1024px) {
      .career-highlights {
        margin-top: 0;
      }
    }

    @media (max-width: 768px) {
      .grid-cols-4 {
        grid-template-columns: 1fr;
      }

      .hiring-flow,
      .application-left,
      .application-right {
        padding: 1.4rem;
      }

      .career-hero-note {
        font-size: 1rem;
      }
    }
  

/* ========== CONTACT PAGE STYLES ========== */

    .contact-note {
      max-width: 780px;
      margin: 0.9rem auto 0;
      color: #475569;
      font-size: 1.05rem;
    }

    .contact-kpi-strip {
      margin-top: -46px;
      position: relative;
      z-index: 3;
    }

    .contact-kpi-card {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 18px;
      box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
      padding: 1.25rem;
    }

    .contact-kpi-card strong {
      color: var(--brand-orange);
      font-family: var(--font-display);
      font-size: 1.95rem;
      line-height: 1;
      display: block;
      margin-bottom: 0.35rem;
    }

    .contact-kpi-card span {
      color: #64748B;
      font-size: 0.94rem;
    }

    .contact-shell {
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 24px;
      box-shadow: 0 25px 42px rgba(15, 23, 42, 0.08);
      overflow: hidden;
    }

    .contact-info-pane {
      background: linear-gradient(160deg, #0A1128 0%, #1A2542 100%);
      color: #E2E8F0;
      padding: 2rem;
      height: 100%;
    }

    .contact-info-pane h3 {
      color: #fff;
      font-family: var(--font-display);
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }

    .contact-info-pane p {
      color: #CBD5E1;
    }

    .contact-card {
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      padding: 1rem;
      margin-top: 1rem;
    }

    .contact-card h4 {
      color: #fff;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      font-family: var(--font-display);
    }

    .contact-meta {
      display: grid;
      gap: 0.45rem;
    }

    .contact-meta span {
      color: #CBD5E1;
      font-size: 0.95rem;
    }

    .contact-form-pane {
      padding: 2rem;
      background: linear-gradient(145deg, #fff 0%, #F8FAFC 100%);
      height: 100%;
    }

    .contact-form-pane h3 {
      color: var(--brand-blue);
      font-family: var(--font-display);
      font-size: 1.75rem;
      margin-bottom: 0.4rem;
    }

    .contact-form-pane p {
      color: #64748B;
      margin-bottom: 1.2rem;
    }

    .contact-map {
      margin-top: 1.2rem;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
      height: 260px;
    }

    .process-shell {
      margin-top: 2rem;
      border: 1px solid rgba(15, 23, 42, 0.07);
      border-radius: 22px;
      background: linear-gradient(135deg, #fff 0%, #F8FAFC 100%);
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
      padding: 2rem;
    }

    .grid-cols-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .process-step {
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 16px;
      background: #fff;
      padding: 1.5rem;
      height: 100%;
    }

    .process-step strong {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: linear-gradient(135deg, #0A1128 0%, #1A2542 100%);
      margin-bottom: 1rem;
      font-size: 1.1rem;
      font-weight: 800;
      box-shadow: 0 10px 22px rgba(10, 17, 40, 0.22);
    }

    .process-step h4 {
      color: var(--brand-blue);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .process-step p {
      color: #64748B;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

    .contact-cta {
      margin-top: 2.2rem;
      border-radius: 22px;
      background: linear-gradient(135deg, #0A1128 0%, #1A2542 65%, #273D73 100%);
      color: #fff;
      padding: 2.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 22px 40px rgba(10, 17, 40, 0.3);
    }

    .contact-cta p {
      color: #CBD5E1;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .contact-kpi-strip {
        margin-top: 0;
      }

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

    @media (max-width: 768px) {
      .grid-cols-4 {
        grid-template-columns: 1fr;
      }

      .contact-info-pane,
      .contact-form-pane,
      .process-shell,
      .contact-cta {
        padding: 1.4rem;
      }

      .contact-cta {
        flex-direction: column;
        align-items: flex-start;
      }

      .contact-map {
        height: 220px;
      }
    }
  

/* ========== PROJECTS PAGE STYLES ========== */

    .projects-note {
      max-width: 760px;
      margin: 0.9rem auto 0;
      color: #475569;
      font-size: 1.05rem;
    }

    .kpi-strip {
      margin-top: -46px;
      position: relative;
      z-index: 3;
    }

    .kpi-card {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 18px;
      box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
      padding: 1.3rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .kpi-card strong {
      color: var(--brand-orange);
      font-family: var(--font-display);
      font-size: 2rem;
      line-height: 1;
    }

    .kpi-card span {
      color: #64748B;
      font-size: 0.95rem;
    }

    .case-study {
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 26px 45px rgba(15, 23, 42, 0.08);
    }

    .case-study img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      display: block;
    }

    .case-copy {
      padding: 2rem;
      background: linear-gradient(145deg, #fff 0%, #F8FAFC 100%);
      height: 100%;
    }

    .case-tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(255, 106, 0, 0.1);
      color: var(--brand-orange);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.3px;
      padding: 0.35rem 0.8rem;
      margin-bottom: 1rem;
    }

    .impact-points {
      margin: 1rem 0 0;
      display: grid;
      gap: 0.55rem;
    }

    .impact-points li {
      color: #475569;
      padding-left: 1.2rem;
      position: relative;
      font-size: 0.95rem;
    }

    .impact-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55rem;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand-orange);
    }

    .project-card-plus {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card-plus:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 40px rgba(15, 23, 42, 0.13);
    }

    .project-card-plus img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .project-meta {
      padding: 1.2rem;
    }

    .project-chip {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(10, 17, 40, 0.08);
      color: var(--brand-blue);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.3rem 0.65rem;
      margin-bottom: 0.7rem;
    }

    .results-panel {
      margin-top: 2rem;
      border-radius: 22px;
      background: linear-gradient(135deg, #0A1128 0%, #1A2542 65%, #273D73 100%);
      color: #fff;
      padding: 2.1rem;
      box-shadow: 0 22px 40px rgba(10, 17, 40, 0.3);
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1rem;
    }

    .result-box {
      border-radius: 14px;
      padding: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.06);
    }

    .result-box strong {
      display: block;
      font-size: 1.55rem;
      font-family: var(--font-display);
      color: #fff;
      line-height: 1.1;
      margin-bottom: 0.3rem;
    }

    .result-box span {
      color: #CBD5E1;
      font-size: 0.92rem;
    }

    @media (max-width: 1024px) {
      .kpi-strip {
        margin-top: 0;
      }

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

    @media (max-width: 768px) {
      .case-copy,
      .results-panel {
        padding: 1.4rem;
      }
    }
  

/* ========== SERVICES PAGE STYLES ========== */

    .services-note {
      max-width: 760px;
      margin: 0.9rem auto 0;
      color: #475569;
      font-size: 1.05rem;
    }

    .metric-strip {
      margin-top: -46px;
      position: relative;
      z-index: 3;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 18px;
      box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
      padding: 1.3rem;
      display: flex;
      gap: 0.8rem;
      align-items: center;
    }

    .metric-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--brand-orange), #FFA842);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      box-shadow: 0 10px 18px rgba(255, 106, 0, 0.26);
      flex-shrink: 0;
    }

    .metric-card strong {
      color: var(--brand-blue);
      font-family: var(--font-display);
      font-size: 1.3rem;
      line-height: 1;
      display: block;
    }

    .metric-card span {
      color: #64748B;
      font-size: 0.9rem;
    }

    .service-card-premium {
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 20px;
      box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .service-card-premium::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--brand-orange), #FFA842);
    }

    .service-card-premium:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 44px rgba(15, 23, 42, 0.12);
    }

    .service-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .service-icon-pill {
      width: 52px;
      height: 52px;
      border-radius: 15px;
      background: linear-gradient(135deg, #0A1128 0%, #1A2542 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.3rem;
      box-shadow: 0 12px 20px rgba(10, 17, 40, 0.22);
    }

    .service-tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(255, 106, 0, 0.1);
      color: var(--brand-orange);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.3px;
      padding: 0.35rem 0.7rem;
    }

    .service-bullets {
      margin-top: 1rem;
      display: grid;
      gap: 0.55rem;
    }

    .service-bullets li {
      color: #475569;
      font-size: 0.95rem;
      padding-left: 1.2rem;
      position: relative;
    }

    .service-bullets li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55rem;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand-orange);
    }

    .workflow-shell {
      margin-top: 0.5rem;
      border-radius: 22px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: linear-gradient(135deg, #fff 0%, #F8FAFC 100%);
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
      padding: 2rem;
    }

    .grid-cols-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .workflow-step {
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 16px;
      padding: 1.2rem;
      height: 100%;
    }

    .workflow-step strong {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--brand-blue);
      color: #fff;
      margin-bottom: 0.7rem;
      font-size: 0.95rem;
    }

    .services-cta {
      margin-top: 2.2rem;
      border-radius: 22px;
      background: linear-gradient(135deg, #0A1128 0%, #1A2542 60%, #273D73 100%);
      color: #fff;
      padding: 2.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 22px 40px rgba(10, 17, 40, 0.3);
    }

    .services-cta p {
      color: #CBD5E1;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .metric-strip {
        margin-top: 0;
      }

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

    @media (max-width: 768px) {
      .grid-cols-4 {
        grid-template-columns: 1fr;
      }

      .services-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
      }

      .service-head {
        align-items: flex-start;
        flex-direction: column;
      }
    }
  

/* ========== SERVICE-DETAILS PAGE STYLES ========== */

    .process-step {
      display: flex;
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .step-number {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--brand-orange);
      color: white;
      font-size: 1.5rem;
      font-family: var(--font-display);
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .check-list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-muted);
    }
    .check-list li::before {
      content: "✓";
      color: var(--brand-orange);
      font-weight: bold;
    }
  
