/* ===========================
   POWERTECHNO - Main Stylesheet
   =========================== */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --gray: #888888;
  --light-gray: #cccccc;
  --accent: #e8e8e8;
  --border: rgba(255,255,255,0.12);
  --font-main: 'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--white); color: var(--black); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700; font-size: 15px; letter-spacing: 2px;
}
.logo-box {
  width: 34px; height: 34px; border: 1.5px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
}
.logo-box.small { width: 28px; height: 28px; font-size: 8px; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  opacity: 0.75; transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-plus {
  background: none; border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white); width: 28px; height: 28px;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.nav-plus:hover { border-color: var(--white); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; width: 100%;
  background: var(--black); z-index: 999;
  padding: 24px 32px 32px; flex-direction: column; gap: 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 20px; font-weight: 700; letter-spacing: 2px;
  opacity: 0.8;
}
.mobile-menu a:hover { opacity: 1; }

/* ===== HERO ===== */
.hero {
  background: var(--black); min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 60px; position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; right: 0; top: 0; width: 50%; height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.hero-content {
  max-width: 1400px; margin: 0 auto; padding: 80px 32px 60px;
  position: relative; z-index: 1;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(72px, 10vw, 140px);
  font-weight: 900; line-height: 0.9; color: var(--white);
  letter-spacing: -2px; margin-bottom: 28px;
}
.hero-sub {
  color: rgba(255,255,255,0.65); font-size: clamp(14px, 1.6vw, 18px);
  max-width: 520px; line-height: 1.6; margin-bottom: 40px;
}
.btn-white {
  display: inline-block; background: var(--white); color: var(--black);
  padding: 16px 32px; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--off-white); }
.hero-badge-row {
  position: absolute; bottom: 0; left: 0; width: 100%;
  background: #7c5cfc; overflow: hidden; height: 38px;
}
.ticker-wrap { overflow: hidden; white-space: nowrap; }
.ticker {
  display: inline-block; animation: ticker 20s linear infinite;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--white); line-height: 38px; padding-left: 100%;
}
.ticker span { margin-right: 80px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== CLIENTS ===== */
.clients-section {
  padding: 60px 32px; text-align: center; background: var(--white);
}
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--gray); margin-bottom: 32px;
}
.section-label.dark { color: var(--gray); }
.clients-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 60px;
  max-width: 900px; margin: 0 auto;
}
.client-logo {
  font-size: clamp(16px, 2vw, 22px); font-weight: 700;
  color: var(--black); opacity: 0.55; transition: opacity 0.2s;
  cursor: default;
}
.client-logo:hover { opacity: 1; }

/* ===== ABOUT STRIP ===== */
.dark-bg { background: var(--dark); color: var(--white); }
.about-strip { padding: 80px 32px; }
.about-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-bottom: 64px;
}
.about-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.about-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; line-height: 1.1;
}
.about-right { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; padding-top: 20px; }
.services-cards {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.scard {
  background: rgba(255,255,255,0.04); padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.scard:hover { background: rgba(255,255,255,0.08); }
.scard h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.5px; }
.scard p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ===== CASE STUDIES ===== */
.case-section { padding: 80px 25rem; background: var(--white); }
.section-title {
  font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800; line-height: 1.15; margin-bottom: 48px; max-width: 700px;
}
.section-title.dark { color: var(--black); }
.case-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  max-width: 1200px; margin: 0 auto 48px;
}
.case-card {
  position: relative; overflow: hidden; height: 280px; cursor: pointer;
}
.case-card img { transition: transform 0.5s; }
.case-card:hover img { transform: scale(1.05); }
.case-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; color: var(--white);
}
.case-logo { font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.case-stat big { display: block; font-family: var(--font-display); font-size: 42px; font-weight: 900; line-height: 1; }
.case-stat small { font-size: 11px; opacity: 0.75; text-transform: uppercase; letter-spacing: 1px; }
.btn-center { text-align: center; margin-top: 16px; }
.btn-outline {
  display: inline-block; border: 1.5px solid var(--black);
  color: var(--black); padding: 14px 32px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline.small { padding: 10px 22px; font-size: 11px; }
.dark-bg .btn-outline {
  border-color: rgba(255,255,255,0.4); color: var(--white);
}
.dark-bg .btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ===== TERMINAL ===== */
.terminal-section {
  padding: 100px 32px; background: var(--white);
  display: flex; align-items: flex-start; gap: 60px;
  max-width: 1200px; margin: 0 auto;
}
.terminal-left { min-width: 80px; }
.why-label {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 10px; letter-spacing: 3px; font-weight: 600; color: var(--gray);
}
.terminal-box {
  flex: 1; background: #0d1117; border-radius: 8px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.terminal-bar {
  background: #1c1c1e; padding: 12px 16px;
  display: flex; gap: 8px; align-items: center;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.terminal-body { padding: 28px 32px; font-family: 'Courier New', monospace; font-size: 14px; }
.t-comment { color: #6a9955; margin-bottom: 12px; }
.t-line { color: #d4d4d4; margin-bottom: 6px; line-height: 1.8; }
.t-indent { padding-left: 28px; color: #9cdcfe; }
.t-key { color: #569cd6; }
.t-var { color: #4fc1ff; }
.t-cursor {
  display: inline-block; color: var(--white);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===== CTA ===== */
.cta-section { padding: 80px 32px; background: var(--white); }
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  border-top: 1px solid rgba(0,0,0,0.1); padding-top: 60px;
}
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; }
.cta-inner p { color: var(--gray); font-size: 14px; margin-top: 6px; }

/* ===== PARTNERS ===== */
.partners-section { padding: 80px 32px; text-align: center; }
.partners-section h2 {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  margin-bottom: 48px;
}
.badges-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.badge-item {
  border: 1.5px solid rgba(255,255,255,0.2); padding: 12px 24px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

/* ===== FOOTER ===== */
.footer { padding: 80px 32px 40px; }
.footer-big {
  font-family: var(--font-display); font-size: clamp(60px, 10vw, 130px);
  font-weight: 900; line-height: 0.88; color: var(--white);
  margin-bottom: 60px; letter-spacing: -0.5px;
}
.footer-links {
  display: flex; gap: 80px; margin-bottom: 60px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
}
.footer-right {
  margin-left: auto; display: flex; align-items: center; gap: 28px;
}
.footer-right a { color: rgba(255,255,255,0.5); text-decoration: underline; }

/* ===== SERVICES PAGE ===== */
.page-hero {
  height: 480px; position: relative; overflow: hidden;
  margin-top: 60px; display: flex; align-items: flex-end;
}
.page-hero-bg { position: absolute; inset: 0; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.page-hero-content {
  position: relative; z-index: 1;
  padding: 60px 48px; color: var(--white); max-width: 700px;
}
.breadcrumb {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: rgba(255,255,255,0.5); margin-bottom: 14px;
}
.page-hero-content h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; line-height: 1.05;
}
.social-row { display: flex; gap: 16px; margin-top: 24px; }
.social-row a {
  width: 34px; height: 34px; border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.7); transition: border-color 0.2s, color 0.2s;
}
.social-row a:hover { border-color: var(--white); color: var(--white); }
.social-row.light a { border-color: rgba(0,0,0,0.2); color: rgba(0,0,0,0.5); }
.social-row.light a:hover { border-color: var(--black); color: var(--black); }

.value-section {
  padding: 80px 32px; text-align: center; max-width: 900px; margin: 0 auto;
}
.value-section h2 {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 50px);
  font-weight: 800; margin-bottom: 24px;
}
.value-intro { font-size: 15px; color: var(--gray); line-height: 1.7; }

.services-list { max-width: 1100px; margin: 0 auto; padding: 20px 32px 80px; }
.service-row {
  display: grid; grid-template-columns: 260px 1fr; gap: 40px;
  padding: 48px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.service-info h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  margin-bottom: 6px;
}
.service-info p { font-size: 13px; color: var(--gray); }
.service-techs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 60px;
  padding-top: 6px;
}
.tech-col { display: flex; flex-direction: column; gap: 10px; }
.tech-col span { font-size: 13px; color: rgba(0,0,0,0.55); }
.full-img-block { height: 500px; overflow: hidden; }
.full-img-block img { width: 100%; height: 100%; object-fit: cover; }

/* ===== US PAGE ===== */
.us-hero {
  min-height: 80vh; display: flex; align-items: center;
  padding: 120px 48px 80px; gap: 60px; justify-content: space-between;
}
.us-hero-content { flex: 1; max-width: 700px; padding-left: 4rem;}
.breadcrumb.light { color: rgba(255,255,255,0.4); }
.us-title {
  font-family: var(--font-display); font-size: clamp(70px, 9vw, 120px);
  font-weight: 900; color: var(--white); line-height: 0.95; margin-bottom: 16px; 
}
.us-sub { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.us-hero-img {
  width: 320px;
  height: 420px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.us-hero-img img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;   /* IMPORTANT */
  display: block;
}

.locations-section {
  width: 100%;
  min-height: 950px;              /* ensures background is visible */
  padding: 80px 48px;
  background-image: url('assets/location.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.locations-section h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800; margin-bottom: 40px;
}
.locations-inner { display: flex; align-items: center; gap: 80px; }
.locations-list { display: flex; flex-direction: column; gap: 20px; }
.locations-list li {
  font-size: 18px; font-weight: 600; position: relative; padding-left: 16px;
}
.locations-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 6px; height: 6px;
  background: var(--black); border-radius: 50%;
}
.globe-visual {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #444, #111);
  box-shadow: inset -20px -20px 40px rgba(0,0,0,0.5), 0 0 60px rgba(0,0,0,0.2);
  position: relative; overflow: hidden;
}
.globe-visual::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-linear-gradient(
    transparent, transparent 18px, rgba(255,255,255,0.04) 18px, rgba(255,255,255,0.04) 19px
  );
}

.office-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 220px;
  gap: 4px; max-width: 1200px; margin: 0 auto; padding: 60px 32px 60px;
}
.office-grid img { width: 100%; height: 100%; object-fit: cover; }

.team-section { padding: 80px 32px; }
.team-section h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800; margin-bottom: 40px; text-align: center;
}
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 6px; max-width: 1100px; margin: 0 auto;
}
.team-grid img { width: 80px; height: 80px; object-fit: cover; border-radius: 2px; }

.leaders-section { padding: 80px 32px; }
.leaders-section h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800; margin-bottom: 40px; text-align: center;
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0 20rem;
}
.leader-card {
  display: grid;
  
  align-items: center;
  background: #f3f3f3;
  min-height: 280px;
  overflow: hidden;
}
.leader-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.leader-content {
  padding: 40px;
}

.leader-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.leader-content p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.belong-section { padding: 80px 32px; background: var(--off-white); }
.belong-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.belong-img { height: 400px; overflow: hidden; }
.belong-img img { width: 100%; height: 100%; object-fit: cover; }
.belong-content h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; margin-bottom: 28px;
}
.belong-cards { display: flex; flex-direction: column; gap: 24px; }
.belong-card {
  background: var(--white); padding: 28px;
  border: 1px solid rgba(0,0,0,0.07);
}
.belong-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.belong-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  min-height: calc(100vh - 60px); margin-top: 60px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: center; gap: 60px; padding: 80px 48px;
  position: relative; overflow: hidden;
}
.dots-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.contact-left { position: relative; z-index: 1; }
.contact-left h1 {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 32px;
}
.contact-bullets { padding: 0; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.contact-bullets li {
  color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6;
  padding-left: 20px; position: relative;
}
.contact-bullets li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; background: rgba(255,255,255,0.3); border-radius: 50%;
}
.client-logos-contact {
  display: flex; flex-wrap: wrap; gap: 20px 36px;
}
.client-logos-contact span {
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

.contact-form-wrap { position: relative; z-index: 1; }
.contact-form {
  background: var(--white); padding: 40px; border-radius: 2px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 20px; }
.form-group label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px; color: var(--black);
}
.req { color: #e53e3e; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e2e8f0; padding: 11px 14px;
  font-size: 14px; font-family: var(--font-main);
  outline: none; transition: border-color 0.2s; background: var(--white);
  color: var(--black); border-radius: 0; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e53e3e; }
.form-group textarea { resize: vertical; min-height: 100px; }
.err-msg {
  font-size: 12px; color: #e53e3e; display: none; margin-top: 2px;
}
.err-msg.visible { display: block; }
.form-submit-row { text-align: right; margin-top: 8px; }
.btn-submit {
  background: var(--black); color: var(--white);
  border: none; padding: 14px 32px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  cursor: pointer; font-family: var(--font-main);
  transition: background 0.2s;
}
.btn-submit:hover { background: #222; }

.form-success {
  background: var(--white); padding: 60px 40px; text-align: center;
  min-height: 400px; display: flex; align-items: center; justify-content: center;
}
.success-check {
  width: 60px; height: 60px; background: var(--black); color: var(--white);
  border-radius: 50%; font-size: 28px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.success-content h3 {
  font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 12px;
}
.success-content p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-hero { grid-template-columns: 1fr; padding: 80px 32px 60px; }
  .us-hero { flex-direction: column; padding: 100px 32px 60px; }
  .us-hero-img { width: 100%; height: 300px; }
  .terminal-section { flex-direction: column; padding: 60px 32px; }
  .why-label { writing-mode: horizontal-tb; transform: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(62px, 18vw, 100px); }
  .services-cards { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .office-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 20px; padding: 60px 30px;}
  .office-grid img { height: 220px; }.leaders-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-card img {
    height: 260px;
  }
  .belong-inner { grid-template-columns: 1fr; }
  .belong-img { height: 280px; }
  .service-row { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
  .footer-bottom { flex-wrap: wrap; gap: 12px; }
  .footer-right { margin-left: 0; flex-wrap: wrap; gap: 12px; }
  .footer-big { font-size: clamp(50px, 14vw, 80px); }
  .locations-inner { flex-direction: column; gap: 40px; }
.case-section {
    padding: 40px 20px;
  }
   .locations-section {
    display: none;
  }
  .us-hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-top: 2rem; 
    text-align: center; 
  }
   .us-hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    gap: 32px;
    padding: 80px 20px 60px;
    width: 100%;
  }


}


@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .hero-content { padding: 60px 20px 80px; }
  .case-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hero { padding: 80px 20px 40px; }
  .contact-form { padding: 28px 20px; }
  .leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); }
  .team-grid img { width: 70px; height: 70px; }
}
