/* ===== Design tokens ===== */
:root {
  --navy: #0d3a5c;
  --navy-dark: #0a2c46;
  --blue: #1a6faa;
  --orange: #f5a623;
  --orange-dark: #e28e0a;
  --text-dark: #1c2530;
  --text-muted: #5a6b7a;
  --bg-light: #f4f7fa;
  --white: #ffffff;
  --border: #e3e9ef;
  --shadow: 0 10px 30px rgba(13, 58, 92, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 58, 92, 0.15);
  --radius: 14px;
  --container: 1180px;
  --transition: 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 96px 0; }

.section-tag {
  display: inline-block;
  color: var(--orange-dark);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 48px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap img { height: 38px; width: auto; transition: filter var(--transition); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-desktop a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.site-header.scrolled .nav-desktop a { color: var(--navy); }
.nav-desktop a:hover { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--navy); }

.nav-mobile { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--blue) 100%);
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(245,166,35,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08), transparent 40%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-badges img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--orange); }

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual .glow-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-visual img { border-radius: 14px; }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
}
.hero-stats .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}
.hero-stats .stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ===== About ===== */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(13,58,92,0.4));
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-year-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--navy-dark);
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  text-align: center;
  line-height: 1.1;
}
.about-year-badge span:first-child { font-size: 1.6rem; }
.about-year-badge span:last-child { font-size: 0.7rem; font-weight: 600; }

.about-content p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.05rem; }

.about-focus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.about-focus-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-light);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
}
.about-focus-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--navy-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== Visi Misi ===== */
.vm-section { background: var(--bg-light); }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}
.vm-card.misi { border-top-color: var(--navy); }
.vm-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 800;
}
.vm-card p { color: var(--text-muted); font-size: 1.05rem; }
.vm-card ul { display: flex; flex-direction: column; gap: 14px; }
.vm-card ul li {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  align-items: flex-start;
}
.vm-card ul li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ===== Core Values ===== */
.values-section {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
}
.values-section .section-tag { color: var(--orange); }
.values-section .section-title { color: var(--white); }
.values-section .section-sub { color: rgba(255,255,255,0.75); }

.sejahtera-word {
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  font-weight: 900;
  text-align: center;
  color: var(--white);
  letter-spacing: 4px;
  margin: 20px 0 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.value-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.value-chip:hover { transform: translateY(-6px); background: rgba(245,166,35,0.15); }
.value-chip .letter {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.value-chip .word { font-weight: 700; font-size: 0.95rem; }

/* ===== ISO ===== */
.iso-section { background: var(--white); }
.iso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.iso-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.iso-card:hover { transform: translateY(-8px); }
.iso-card img {
  max-height: 380px;
  margin: 0 auto 18px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.iso-card h4 { color: var(--navy); font-weight: 800; margin-bottom: 6px; }
.iso-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Products & Services overview ===== */
.overview-section { background: var(--bg-light); }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.overview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.overview-card .pill {
  display: inline-block;
  background: var(--orange);
  color: var(--navy-dark);
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 22px;
  font-size: 0.95rem;
}
.overview-card ul { display: flex; flex-direction: column; gap: 12px; }
.overview-card ul li {
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  border-left: 3px solid var(--blue);
  transition: transform var(--transition), background var(--transition);
}
.overview-card ul li:hover { transform: translateX(6px); background: #eaf1f7; }

/* ===== Product detail blocks ===== */
.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.product-block:last-child { border-bottom: none; }
.product-block.reverse { direction: rtl; }
.product-block.reverse > * { direction: ltr; }

.product-text .badge-row { display: flex; gap: 10px; margin-bottom: 18px; }
.product-text .badge-row img { height: 44px; width: 44px; border-radius: 8px; box-shadow: var(--shadow); }
.product-text h3 {
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}
.product-text p { color: var(--text-muted); margin-bottom: 14px; font-size: 1.02rem; }
.product-text .tag-line {
  display: inline-block;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-visual img { width: 100%; height: 100%; object-fit: cover; }
.product-visual.two-shot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  box-shadow: none;
}
.product-visual.two-shot img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Mobile apps grid */
.mobile-apps-section { background: var(--navy-dark); color: var(--white); }
.mobile-apps-section .section-tag { color: var(--orange); }
.mobile-apps-section .section-title { color: var(--white); }
.mobile-apps-section .section-sub { color: rgba(255,255,255,0.7); }

.mobile-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.app-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.app-card:hover { transform: translateY(-8px); background: rgba(245,166,35,0.12); }
.app-card img {
  height: 150px;
  width: auto;
  margin: 0 auto 18px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.app-card h4 { font-weight: 800; margin-bottom: 8px; font-size: 1rem; letter-spacing: 0.5px; }
.app-card p { color: rgba(255,255,255,0.7); font-size: 0.86rem; }

/* ===== IT Services cards ===== */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); }
.service-card.dark { background: var(--navy); color: var(--white); }
.service-card.light { background: var(--bg-light); color: var(--text-dark); }
.service-card .badge {
  display: inline-block;
  background: var(--orange);
  color: var(--navy-dark);
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}
.service-card p { margin-bottom: 20px; opacity: 0.85; }
.service-card ul { display: flex; flex-direction: column; gap: 10px; }
.service-card ul li {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
}
.service-card.dark ul li { background: rgba(255,255,255,0.08); }
.service-card.light ul li { background: var(--white); }

/* ===== Infra & solutions ===== */
.infra-section { background: var(--bg-light); }
.infra-intro { max-width: 800px; margin: 0 auto 50px; text-align: center; color: var(--text-muted); font-size: 1.05rem; }
.infra-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.infra-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.infra-card h4 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 1.05rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}
.infra-card ul li {
  color: var(--text-muted);
  padding: 6px 0;
  font-size: 0.92rem;
  position: relative;
  padding-left: 16px;
}
.infra-card ul li::before {
  content: "•";
  color: var(--orange-dark);
  position: absolute;
  left: 0;
  font-weight: 800;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
}
.industry-card h4 { color: var(--orange); font-weight: 800; margin-bottom: 12px; }
.industry-card p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }

/* ===== Solutions vendor cloud ===== */
.solutions-section { background: var(--white); }
.solutions-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.solutions-tabs span {
  background: var(--bg-light);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
}
.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.brand-cloud span {
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  opacity: 0.9;
  transition: transform var(--transition), background var(--transition);
}
.brand-cloud span:hover { transform: translateY(-3px); background: var(--orange); color: var(--navy-dark); }

/* ===== Partners / Clients ===== */
.logos-section.alt { background: var(--bg-light); }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.logo-tile {
  background: var(--white);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.logo-tile:hover { transform: translateY(-5px); }
.logo-tile img { max-height: 55px; max-width: 100%; object-fit: contain; }

/* ===== Projects ===== */
.projects-section { background: var(--navy-dark); color: var(--white); }
.projects-section .section-tag { color: var(--orange); }
.projects-section .section-title { color: var(--white); }
.projects-section .section-sub { color: rgba(255,255,255,0.7); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 26px;
}
.project-card h4 {
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-card h4::before {
  content: "";
  width: 8px; height: 20px;
  background: var(--orange);
  border-radius: 4px;
  display: inline-block;
}
.project-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.project-logos .mini-tile {
  background: var(--white);
  border-radius: 8px;
  padding: 8px 10px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-logos .mini-tile img { max-height: 26px; max-width: 90px; object-fit: contain; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy-dark);
  font-weight: 800;
  margin-bottom: 18px;
}
.cta-banner p { color: rgba(13,44,70,0.85); margin-bottom: 30px; font-size: 1.05rem; }
.cta-banner .btn-primary { background: var(--navy-dark); color: var(--white); box-shadow: 0 8px 20px rgba(10,44,70,0.35); }
.cta-banner .btn-primary:hover { background: var(--navy); }

/* ===== Footer / Contact ===== */
.footer-section {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 340px; }
.footer-col h4 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.94rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}
.footer-contact-item .ic {
  width: 34px; height: 34px;
  background: rgba(245,166,35,0.15);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .vm-grid, .iso-grid, .overview-grid, .services-grid { grid-template-columns: 1fr; }
  .product-block, .product-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .product-block .product-visual { order: -1; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .mobile-apps-grid { grid-template-columns: repeat(2, 1fr); }
  .infra-cols, .industry-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-desktop, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-apps-grid { grid-template-columns: 1fr 1fr; }
  .infra-cols, .industry-grid, .projects-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-focus-list { grid-template-columns: 1fr; }

  .nav-mobile {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-dark);
    padding: 100px 30px 30px;
    transition: right 0.35s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .nav-mobile.open { right: 0; }
  .nav-mobile a { color: var(--white); font-weight: 700; font-size: 1.1rem; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
