/* ============================================================
   Softcom Inc — Main Stylesheet
   Modern, clean, professional IT services design
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --navy:       #0B1829;
  --navy-mid:   #1A3A5C;
  --navy-light: #234E7C;
  --accent:     #0EA5E9;
  --accent-2:   #7C3AED;
  --accent-3:   #10B981;
  --accent-4:   #F59E0B;
  --accent-5:   #EF4444;
  --white:      #FFFFFF;
  --light-bg:   #F1F5F9;
  --text-dark:  #0B1829;
  --text-mid:   #334155;
  --text-light: #64748B;
  --border:     #E2E8F0;
  --card-bg:    #FFFFFF;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: .3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

p { color: var(--text-mid); }

.section-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3rem 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #0284C7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14,165,233,.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--light-bg);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 24, 41, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -.5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.logo-text .tagline {
  font-size: .65rem;
  color: var(--accent);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: .5rem .9rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Dropdown */
.nav-links .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: .65rem 1rem;
  font-size: .875rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown a:hover {
  background: var(--light-bg);
  color: var(--accent);
  padding-left: 1.25rem;
}

.nav-cta {
  margin-left: .75rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 1rem 1.5rem 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: .65rem .5rem;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.mobile-nav a:hover { color: var(--accent); }

.mobile-nav .mobile-group-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1rem 0 .25rem;
  font-weight: 600;
}

/* ---------- Hero Carousel ---------- */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide backgrounds — immersive dark navy; SVG bg-fx layers provide visuals */
.hero-slide-1 { background: #050D1A; }
.hero-slide-2 { background: #030C15; }
.hero-slide-3 { background: #060510; }
.hero-slide-4 { background: #040D08; }
.hero-slide-5 { background: #0A0800; }

/* Background FX layer (SVG animations) */
.slide-bg-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.slide-bg-fx svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Gradient overlays to ensure text readability */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 24, 41, .55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
  padding: 0 1.5rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(14,165,233,.2);
  border: 1px solid rgba(14,165,233,.4);
  color: var(--accent);
  padding: .35rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 620px;
}

.hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dots .dot.active {
  background: var(--accent);
  width: 24px;
}

/* Slide arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: rgba(14,165,233,.4);
  border-color: var(--accent);
}

.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* ---------- Solutions Overview ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: height var(--transition);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.solution-card:hover::before { height: 4px; }

.solution-card.c1::before { background: var(--accent-2); }
.solution-card.c2::before { background: var(--accent); }
.solution-card.c3::before { background: var(--accent-5); }
.solution-card.c4::before { background: var(--accent-3); }
.solution-card.c5::before { background: var(--accent-4); }

.solution-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.solution-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--text-dark);
}

.solution-card p {
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: .7rem;
  padding: .25rem .6rem;
  border-radius: 100px;
  background: var(--light-bg);
  color: var(--text-light);
  font-weight: 500;
}

.solution-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
}

.stat-item .label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ---------- Insights / Articles ---------- */
.insights-section {
  background: var(--light-bg);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.article-img.ai-bg   { background: linear-gradient(135deg, #1E1B4B, #7C3AED55); }
.article-img.cloud-bg { background: linear-gradient(135deg, #0C4A6E, #0EA5E955); }
.article-img.cyber-bg { background: linear-gradient(135deg, #1F1F1F, #EF444455); }

.article-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: .5rem;
}

.article-body h4 {
  color: var(--text-dark);
  margin-bottom: .75rem;
  font-size: 1.05rem;
}

.article-body p {
  font-size: .875rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.article-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(14,165,233,.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(124,58,237,.08);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 { color: var(--white); margin-bottom: .5rem; }
.cta-text p { color: rgba(255,255,255,.75); max-width: 500px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin: 1rem 0 1.5rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: #0077B5;
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}

.footer-col a {
  display: block;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .6rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: .9rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  margin-top: 70px;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; }

.page-hero .hero-tags {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-tag {
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.3);
  color: var(--accent);
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
}

/* ---------- Services Grid (solution pages) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-icon.purple { background: #EDE9FE; color: var(--accent-2); }
.service-icon.blue   { background: #E0F2FE; color: var(--accent); }
.service-icon.red    { background: #FEE2E2; color: var(--accent-5); }
.service-icon.green  { background: #D1FAE5; color: var(--accent-3); }
.service-icon.amber  { background: #FEF3C7; color: var(--accent-4); }

.service-card h4 { margin-bottom: .75rem; }
.service-card p  { font-size: .9rem; margin-bottom: 1.25rem; }

.learn-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.learn-more:hover { gap: .6rem; }

/* ---------- Use Cases ---------- */
.use-cases-section {
  background: var(--navy);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.use-case-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
}

.use-case-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(14,165,233,.3);
}

.use-case-card .uc-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.use-case-card h4 {
  color: var(--white);
  margin-bottom: .75rem;
}

.use-case-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}

.use-case-card .metric {
  margin-top: 1rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(14,165,233,.1);
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 100px;
}

/* ---------- Products ---------- */
.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1.25rem;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
}

.feature-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.feature-item p { font-size: .9rem; margin: 0; }

/* ---------- Principles ---------- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.principle-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.principle-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.principle-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-bg);
  line-height: 1;
  margin-bottom: .75rem;
}

/* ---------- Certificates ---------- */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cert-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  background: var(--white);
  transition: all var(--transition);
}

.cert-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.cert-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: .6rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  padding: .5rem;
}

.cert-card h4 { margin-bottom: .5rem; }
.cert-card p { font-size: .875rem; }

/* ---------- Contract Vehicles ---------- */
.contracts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contract-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

.contract-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-2);
}

.contract-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: .4rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(14,165,233,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item h5 { color: rgba(255,255,255,.6); font-size: .75rem; font-weight: 500; margin-bottom: .25rem; }
.contact-info-item p { color: var(--white); font-size: .9rem; }

/* ---------- Careers ---------- */
.positions-grid {
  display: grid;
  gap: 1rem;
}

.position-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all var(--transition);
}

.position-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.position-title { font-weight: 600; font-size: 1rem; margin-bottom: .25rem; }
.position-meta  { font-size: .85rem; color: var(--text-light); }

/* ---------- Utilities ---------- */
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.bg-light { background: var(--light-bg); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider.center { margin: 1rem auto 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-carousel { height: auto; min-height: 90vh; }
  .hero-arrow { display: none; }

  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }

  .position-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
