/* ============================================
   seGen Software — Main Stylesheet
   style.css
   ============================================ */

/* ── CSS VARIABLES ── */
:root {
  --sky: #0EA5E9;
  --sky-light: #BAE6FD;
  --sky-dark: #0369A1;
  --sky-deep: #075985;
  --sky-pale: #F0F9FF;
  --white: #ffffff;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --accent: #F59E0B;
  --accent2: #10B981;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(14,165,233,0.12);
  --shadow-lg: 0 16px 48px rgba(14,165,233,0.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 75px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(14,165,233,0.1); }

/* LOGO */
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img {
  /* 
   * LOGO SIZE RECOMMENDATION:
   * Your current logo is 100x100px (square).
   * Best practice: Use a 300x100px or 400x120px wide logo for navbars.
   * Current setting: height 54px — increase to 64px if you have a larger logo.
   * For a square logo like yours, 54px height works well.
  */
  height: 61px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.nav-logo-tagline {
  font-size: 0.65rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--gray-600);
  text-decoration: none; transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--sky); transform: scaleX(0);
  transition: transform .25s; border-radius: 2px;
}
.nav-links a:hover { color: var(--sky); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark)) !important;
  color: #fff !important; padding: .5rem 1.4rem !important;
  border-radius: 50px !important; font-weight: 600 !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 4px 16px rgba(14,165,233,0.35);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(14,165,233,0.45) !important; }
.nav-cta::after { display: none !important; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--gray-800); border-radius: 2px; transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; top: 75px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 5%; flex-direction: column; gap: .5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08); z-index: 998;
}
.mobile-menu a {
  font-size: 1rem; font-weight: 500; color: var(--gray-700);
  text-decoration: none; padding: .65rem .5rem;
  border-bottom: 1px solid var(--gray-100); transition: color .2s;
}
.mobile-menu a:hover { color: var(--sky); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
#hero {
  min-height: 100vh; padding-top: 75px;
  background: linear-gradient(160deg, #F0F9FF 0%, #E0F2FE 35%, #BAE6FD 70%, #7DD3FC 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4;
  pointer-events: none;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--sky); top: -150px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--accent); bottom: -80px; left: -80px; }

.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto; padding: 4rem 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.3);
  color: var(--sky-dark); padding: .35rem 1rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 1.2rem;
}
.hero-badge::before { content: '●'; font-size: .5rem; color: var(--sky); }
.hero-h1 {
  font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1; color: var(--gray-900); margin-bottom: 1.2rem;
}
.hero-h1 .highlight {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.05rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 2rem; max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: #fff; padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(14,165,233,0.4);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(14,165,233,0.5); }
.btn-outline {
  border: 2px solid var(--sky); color: var(--sky-dark); padding: .83rem 2rem;
  border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--sky); color: #fff; }

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--sky-dark);
}
.stat-label { font-size: .8rem; color: var(--gray-600); margin-top: .1rem; }

/* HERO VISUAL CARD */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card-wrap { position: relative; width: 100%; max-width: 440px; }
.hero-main-card {
  background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(20px); border-radius: 24px;
  padding: 2rem; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hero-main-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--accent), var(--accent2));
}
.card-icon-row { display: flex; gap: .75rem; margin-bottom: 1.2rem; }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.card-icon.blue { background: rgba(14,165,233,0.15); }
.card-icon.amber { background: rgba(245,158,11,0.15); }
.card-icon.green { background: rgba(16,185,129,0.15); }
.card-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.card-sub { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }
.card-bar { margin-top: 1.2rem; }
.bar-label { display: flex; justify-content: space-between; font-size: .78rem; color: var(--gray-600); margin-bottom: .4rem; }
.bar-track { height: 6px; background: var(--gray-200); border-radius: 99px; }
.bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--sky), var(--sky-dark)); }

.float-card {
  position: absolute; background: white; border-radius: 14px;
  padding: .8rem 1.1rem; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  font-size: .78rem; display: flex; align-items: center; gap: .6rem;
  animation: float 4s ease-in-out infinite;
}
.float-card-1 { top: -20px; right: -30px; }
.float-card-2 { bottom: 10px; left: -30px; animation-delay: 2s; }
.float-dot { width: 8px; height: 8px; border-radius: 50%; }
.float-dot.green { background: var(--accent2); }
.float-dot.amber { background: var(--accent); }

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

/* ── SECTION BASE ── */
section { padding: 5rem 5%; }
.section-label {
  display: inline-block; color: var(--sky); font-size: .82rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: .75rem;
}
.section-sub {
  font-size: 1rem; color: var(--gray-600); line-height: 1.7; max-width: 560px;
}
.section-head { margin-bottom: 3rem; }
.max-w { max-width: 1200px; margin: 0 auto; }

/* ── SERVICES ── */
#services { background: var(--gray-50); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-dark));
  transform: scaleX(0); transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-light); }
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-pale), var(--sky-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.svc-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.svc-desc { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }
.svc-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--sky); font-size: .85rem; font-weight: 600;
  text-decoration: none; margin-top: 1rem; transition: gap .2s;
}
.svc-link:hover { gap: .6rem; }

/* ── PRODUCTS ── */
#products { background: var(--white); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.product-card {
  background: linear-gradient(135deg, var(--sky-pale), #fff);
  border: 1px solid var(--sky-light); border-radius: var(--radius);
  padding: 2rem; transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-badge {
  display: inline-block; background: rgba(14,165,233,.12); color: var(--sky-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .25rem .75rem; border-radius: 50px; margin-bottom: 1rem;
}
.product-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; margin-bottom: .6rem; }
.product-desc { font-size: .9rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.product-features li {
  font-size: .85rem; color: var(--gray-700);
  display: flex; align-items: center; gap: .5rem;
}
.product-features li::before { content: '✓'; color: var(--accent2); font-weight: 700; }

/* ── CLIENTS ── */
#clients { background: var(--sky-deep); position: relative; overflow: hidden; }
#clients::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
#clients .section-title { color: white; }
#clients .section-label { color: var(--sky-light); }
#clients .section-sub { color: rgba(255,255,255,0.7); }
.clients-logos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.client-logo {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 1.5rem; text-align: center;
  transition: background .3s, transform .3s; cursor: default;
}
.client-logo:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.client-logo-icon { font-size: 2rem; }
.client-logo-name {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: white; margin-top: .5rem;
}
.client-logo-type { font-size: .75rem; color: rgba(255,255,255,0.6); margin-top: .2rem; }
.clients-review {
  margin-top: 3rem; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 1.8rem;
}
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: .8rem; }
.review-text { font-size: .9rem; color: rgba(255,255,255,0.85); line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: white;
  background: linear-gradient(135deg, var(--sky), var(--accent)); flex-shrink: 0;
}
.review-name { font-size: .9rem; font-weight: 600; color: white; }
.review-role { font-size: .75rem; color: rgba(255,255,255,0.6); }

/* ── CAREERS ── */
#careers { background: var(--gray-50); }
.careers-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 3rem;
}
.careers-perks { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.perk {
  display: flex; align-items: flex-start; gap: 1rem;
  background: white; border-radius: 12px; padding: 1rem 1.2rem; border: 1px solid var(--gray-200);
}
.perk-icon { font-size: 1.4rem; flex-shrink: 0; }
.perk-title { font-weight: 600; font-size: .9rem; margin-bottom: .2rem; }
.perk-desc { font-size: .82rem; color: var(--gray-600); }
.job-listings { display: flex; flex-direction: column; gap: 1rem; }
.job-card {
  background: white; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 1.5rem; display: flex; align-items: center; gap: 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.job-card:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: var(--sky-light); }
.job-icon {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  background: var(--sky-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.job-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
.job-meta { font-size: .8rem; color: var(--gray-500); margin-top: .2rem; }
.job-tags { display: flex; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.job-tag {
  font-size: .72rem; font-weight: 600; padding: .2rem .7rem;
  border-radius: 50px; background: var(--sky-pale); color: var(--sky-dark);
}
.job-apply {
  margin-left: auto; background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: white; padding: .55rem 1.3rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600; text-decoration: none;
  white-space: nowrap; transition: transform .2s, box-shadow .2s; flex-shrink: 0;
}
.job-apply:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(14,165,233,0.4); }

/* ── WHY US ── */
#why { background: linear-gradient(135deg, var(--sky-pale) 0%, white 100%); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.why-card {
  text-align: center; padding: 2rem 1.5rem; background: white;
  border-radius: var(--radius); border: 1px solid var(--gray-200);
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .4rem;
}
.why-label { font-size: .9rem; color: var(--gray-600); line-height: 1.5; }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; background: var(--sky-pale); border-radius: 14px; border: 1px solid var(--sky-light);
}
.contact-icon {
  width: 42px; height: 42px; background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; flex-shrink: 0;
}
.contact-label { font-size: .75rem; color: var(--gray-500); margin-bottom: .2rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-value { font-size: .95rem; font-weight: 500; color: var(--gray-800); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-family: var(--font-body); font-size: .9rem; color: var(--gray-800);
  background: var(--gray-50); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: white; border: none; padding: .9rem 2rem; border-radius: 50px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: transform .2s, box-shadow .2s; align-self: flex-start;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,233,0.4); }

/* ── FOOTER ── */
footer {
  background: var(--gray-900); color: rgba(255,255,255,0.7); padding: 3rem 5% 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem;
}
.footer-logo-img {
  /*
   * Footer logo: white/inverted version
   * height: 52px recommended for footer
  */
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: .75rem;
}
.footer-desc { font-size: .85rem; line-height: 1.65; max-width: 260px; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.2rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; text-decoration: none; color: white; transition: background .2s;
}
.social-btn:hover { background: var(--sky); }
.footer-col h4 {
  font-family: var(--font-head); font-size: .85rem; font-weight: 700;
  color: white; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--sky-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,0.4);
}

/* ── SCROLL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .careers-intro { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 5%; }
  .job-card { flex-wrap: wrap; }
  .job-apply { margin-left: 0; }
  .clients-logos { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo img { height: 60px; }
}
